8000 gh-131178: Add tests for `pickle` command-line interface by donBarbos · Pull Request #131275 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-131178: Add tests for pickle command-line interface #131275

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Apr 6, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load f 8000 iles.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use string instead of set
  • Loading branch information
donBarbos committed Mar 15, 2025
commit 8f720aeab4533dcaa18d9b985ac834b240c5fcef
4 changes: 2 additions & 2 deletions Lib/test/test_pickle.py
Original file line number Diff line number Diff line change
Expand Up @@ -732,12 +732,12 @@ def test_invocation(self):
data = {
'a': [1, 2.0, 3+4j],
'b': ('character string', b'byte string'),
'c': {None, True, False}
'c': "string"
}
expect = '''
{'a': [1, 2.0, (3+4j)],
'b': ('character string', b'byte string'),
'c': {None, True, False}}
'c': 'string'}
'''
self.set_pickle_data(data)

Expand Down
Loading
0