Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
67582d2b
Commit
67582d2b
authored
Feb 21, 2007
by
Brett Cannon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix test_os from breakage due to dict views.
parent
b38e2bcf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
BROKEN
BROKEN
+0
-1
Lib/test/mapping_tests.py
Lib/test/mapping_tests.py
+1
-1
No files found.
BROKEN
View file @
67582d2b
test_bsddb test_bsddb3 test_compile test_dumbdbm
test_importhooks test_iter test_iterlen test_minidom test_mutants
test_os
Lib/test/mapping_tests.py
View file @
67582d2b
...
...
@@ -101,7 +101,7 @@ class BasicTestMappingProtocol(unittest.TestCase):
#update
p
.
update
(
self
.
reference
)
self
.
assertEqual
(
dict
(
p
),
self
.
reference
)
items
=
p
.
items
(
)
items
=
list
(
p
.
items
()
)
p
=
self
.
_empty_mapping
()
p
.
update
(
items
)
self
.
assertEqual
(
dict
(
p
),
self
.
reference
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment