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
Update Lib/pickle.py
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
  • Loading branch information
donBarbos and hugovk authored Mar 14, 2025
commit 3dd66f2a172c9aa3042722bf61b2275ed5ff8296
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.pprint(obj)
pprint.pp(obj)
Loading
0