The wiki entry applies to CPython for both Python 2 and 3. Those classes were not changed. Other implementations could be different, but they have to be similar if they want people to port code from CPython to xpython. A Python that used, for instance, linked-lists for the list type would require a considerably different programming sytle and code rearrangement to work well ;-).
In 3.3, the dict class is changed so that some information common to the _dict_s of multiple instances of one class is shared instead of duplicated. This mainly affects people with 100s or 1000s of instances of some class and will save about 1/3 of the dict space (I think), a constant factor that does not change the space complexity class.
More importantly, the (unicode) str class has been completely rewritten to use only as many bytes/character as are required. The result will generally be less space and time, but again the main effect should be on the multipliers ignored by O(xxx) notation.