Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
5a8bbc5f
Commit
5a8bbc5f
authored
Oct 13, 2015
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Plain Diff
Issue #25380: Fixed protocol for the STACK_GLOBAL opcode in
pickletools.opcodes.
parents
fa10f61e
5805ddee
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
Lib/pickletools.py
Lib/pickletools.py
+1
-1
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/pickletools.py
View file @
5a8bbc5f
...
@@ -1898,7 +1898,7 @@ opcodes = [
...
@@ -1898,7 +1898,7 @@ opcodes = [
arg
=
None
,
arg
=
None
,
stack_before
=
[
pyunicode
,
pyunicode
],
stack_before
=
[
pyunicode
,
pyunicode
],
stack_after
=
[
anyobject
],
stack_after
=
[
anyobject
],
proto
=
0
,
proto
=
4
,
doc
=
"""Push a global object (module.attr) on the stack.
doc
=
"""Push a global object (module.attr) on the stack.
"""
),
"""
),
...
...
Misc/NEWS
View file @
5a8bbc5f
...
@@ -53,6 +53,9 @@ Library
...
@@ -53,6 +53,9 @@ Library
- Issue #25316: distutils raises OSError instead of DistutilsPlatformError
- Issue #25316: distutils raises OSError instead of DistutilsPlatformError
when MSVC is not installed.
when MSVC is not installed.
- Issue #25380: Fixed protocol for the STACK_GLOBAL opcode in
pickletools.opcodes.
- Issue #23972: Updates asyncio datagram create method allowing reuseport
- Issue #23972: Updates asyncio datagram create method allowing reuseport
and reuseaddr socket options to be set prior to binding the socket.
and reuseaddr socket options to be set prior to binding the socket.
Mirroring the existing asyncio create_server method the reuseaddr option
Mirroring the existing asyncio create_server method the reuseaddr option
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment