mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Rename "dictionary" (type and constructor) to "dict".
This commit is contained in:
parent
7ad2d1eb8e
commit
a427a2b8d0
10 changed files with 66 additions and 63 deletions
|
|
@ -145,7 +145,7 @@ class ReprTests(unittest.TestCase):
|
|||
def test_descriptors(self):
|
||||
eq = self.assertEquals
|
||||
# method descriptors
|
||||
eq(repr(dictionary.items), "<method 'items' of 'dictionary' objects>")
|
||||
eq(repr(dict.items), "<method 'items' of 'dict' objects>")
|
||||
# XXX member descriptors
|
||||
# XXX attribute descriptors
|
||||
# XXX slot descriptors
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue