8000 gh-135041: Expand and update ``pickletools`` module docstrings by Legoclones · Pull Request #135042 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-135041: Expand and update pickletools module docstrings #135042

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

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Lint
  • Loading branch information
Legoclones authored Nov 20, 2024
commit 9ff845c52f2993bfa042ff1598bca9b40115d25d
6 changes: 3 additions & 3 deletions Lib/pickletools.py
Original file line number Diff line number Diff line change
Expand Up @@ -1817,8 +1817,8 @@ def __init__(self, name, code, arg,
proto=0,
doc="""Read an object from the memo and push it on the stack.

The index of the memo object to push is given by the positive
newline-terminated decimal string following. BINGET and LONG_BINGET
The index of the memo object to push is given by the positive
newline-terminated decimal string following. BINGET and LONG_BINGET
are space-optimized versions.
"""),

Expand Down Expand Up @@ -1855,7 +1855,7 @@ def __init__(self, name, code, arg,
doc="""Store the stack top into the memo. The stack is not popped.

The index of the memo location to write into is given by the positive
newline-terminated decimal string following. BINPUT and LONG_BINPUT
newline-terminated decimal string following. BINPUT and LONG_BINPUT
are space-optimized versions.
"""),

Expand Down
0