8000 gh-93096: Update and document `pickle` CLI by donBarbos · Pull Request #131097 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-93096: Update and document pickle CLI #131097

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 17 commits into from
Mar 14, 2025
Merged
Prev Previous commit
Next Next commit
Revert using pp
  • Loading branch information
donBarbos committed Mar 14, 2025
commit 593fd7baa4335a846889c8949c2c12fcef12780b
2 changes: 1 addition & 1 deletion Lib/pickle.py
Original file line number Diff line number Diff line change
Expand Up @@ -1922,4 +1922,4 @@ def _loads(s, /, *, fix_imports=True, encoding="ASCII", errors="strict",
else:
with open(fn, 'rb') as f:
obj = load(f)
pprint.pp(obj)
pprint.pprint(obj)
0