We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbc695a commit 8f720aeCopy full SHA for 8f720ae
1 file changed
Lib/test/test_pickle.py
@@ -732,12 +732,12 @@ def test_invocation(self):
732
data = {
733
'a': [1, 2.0, 3+4j],
734
'b': ('character string', b'byte string'),
735
- 'c': {None, True, False}
+ 'c': "string"
736
}
737
expect = '''
738
{'a': [1, 2.0, (3+4j)],
739
740
- 'c': {None, True, False}}
+ 'c': 'string'}
741
'''
742
self.set_pickle_data(data)
743
0 commit comments