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
d0b592f8
Commit
d0b592f8
authored
May 29, 2008
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#2985: allow i8 in XMLRPC responses.
parent
b77e888f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
Lib/xmlrpclib.py
Lib/xmlrpclib.py
+1
-0
Misc/NEWS
Misc/NEWS
+5
-2
No files found.
Lib/xmlrpclib.py
View file @
d0b592f8
...
...
@@ -897,6 +897,7 @@ class Unmarshaller:
self
.
append
(
int
(
data
))
self
.
_value
=
0
dispatch
[
"i4"
]
=
end_int
dispatch
[
"i8"
]
=
end_int
dispatch
[
"int"
]
=
end_int
def
end_double
(
self
,
data
):
...
...
Misc/NEWS
View file @
d0b592f8
...
...
@@ -63,8 +63,11 @@ Extension Modules
Library
-------
Issue #2877 - The UserString.MutableString class has been removed in
Python 3.0.
- Issue #2985: Allow 64-bit integer responses (``<i8>``) in XMLRPC
transfers.
- Issue #2877: The UserString.MutableString class has been removed in
Python 3.0.
- Do not close external file objects passed to tarfile.open(mode='w:bz2')
when the TarFile is closed.
...
...
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