Benjamin Peterson
|
c6dc12484b
|
fix compiler warning
|
2013-03-19 23:20:59 -05:00 |
|
Kristján Valur Jónsson
|
d7009c6913
|
Issue #16475: Support object instancing, recursion and interned strings
in marshal
|
2013-03-19 18:02:10 -07:00 |
|
Serhiy Storchaka
|
5a1f152d19
|
Issue #5308: Raise ValueError when marshalling too large object (a sequence
with size >= 2**31), instead of producing illegal marshal data.
|
2013-02-13 12:11:03 +02:00 |
|
Serhiy Storchaka
|
7e0191170e
|
Issue #5308: Raise ValueError when marshalling too large object (a sequence
with size >= 2**31), instead of producing illegal marshal data.
|
2013-02-13 12:08:15 +02:00 |
|
Martin v. Löwis
|
7e39572aa8
|
Issue #15466: Stop using TYPE_INT64 in marshal,
to make importlib.h (and other byte code files) equal between 32-bit
and 64-bit systems.
|
2012-07-28 19:44:05 +02:00 |
|
Antoine Pitrou
|
0d3a003f24
|
- Issue #14177: marshal.loads() now raises TypeError when given an unicode
string. Patch by Guilherme Gonçalves.
|
2012-03-03 02:38:37 +01:00 |
|
Antoine Pitrou
|
4a90ef0363
|
Issue #14177: marshal.loads() now raises TypeError when given an unicode string.
Patch by Guilherme Gonçalves.
|
2012-03-03 02:35:32 +01:00 |
|
Antoine Pitrou
|
1c13f84f55
|
Simplify code in marshal.c.
|
2012-03-02 18:22:23 +01:00 |
|
Antoine Pitrou
|
b2677c7397
|
Issue #14172: Fix reference leak when marshalling a buffer-like object (other than a bytes object).
|
2012-03-02 18:16:38 +01:00 |
|
Antoine Pitrou
|
679e9d36f7
|
Issue #14172: Fix reference leak when marshalling a buffer-like object (other than a bytes object).
|
2012-03-02 18:12:43 +01:00 |
|
Martin v. Löwis
|
bd928fef42
|
Rename _Py_identifier to _Py_IDENTIFIER.
|
2011-10-14 10:20:37 +02:00 |
|
Martin v. Löwis
|
afe55bba33
|
Add API for static strings, primarily good for identifiers.
Thanks to Konrad Schöbel and Jasper Schulz for helping with the mass-editing.
|
2011-10-09 10:38:36 +02:00 |
|
Martin v. Löwis
|
d63a3b8beb
|
Implement PEP 393.
|
2011-09-28 07:41:54 +02:00 |
|
Éric Araujo
|
2527796a22
|
Merge from 3.2 (#10318, #12255, #12043, #12417 and other fixes)
|
2011-07-29 03:11:09 +02:00 |
|
Éric Araujo
|
6c0ba447bd
|
Fix style in code added by edba722f3b02
|
2011-07-26 17:23:57 +02:00 |
|
Vinay Sajip
|
aac0f75b3b
|
Correct uninitialized data problem in marshal code.
|
2011-07-02 18:42:21 +01:00 |
|
Vinay Sajip
|
3232284391
|
Removed breaking typo accidentally introduced during merge with 3.2.
|
2011-07-02 17:19:51 +01:00 |
|
Vinay Sajip
|
65897a386e
|
Closes #12291 for 3.3 - merged fix from 3.2.
|
2011-07-02 17:16:02 +01:00 |
|
Vinay Sajip
|
5bdae3bb7c
|
Closes #12291: Fixed bug which was found when doing multiple loads from one stream.
|
2011-07-02 16:42:47 +01:00 |
|
Vinay Sajip
|
623e8b86af
|
Removed some unused local variables.
|
2011-07-02 17:21:37 +01:00 |
|
Benjamin Peterson
|
43b068648e
|
try to use the same str object for all code filenames when compiling or unmarshalling (#12190)
This should reduce memory usage.
|
2011-05-27 09:08:01 -05:00 |
|
Benjamin Peterson
|
d408503b2c
|
remove unused string WILFE attribute
|
2011-05-27 07:53:28 -05:00 |
|
Antoine Pitrou
|
f95a1b3c53
|
Recorded merge of revisions 81029 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines
Untabify C files. Will watch buildbots.
........
|
2010-05-09 15:52:27 +00:00 |
|
Antoine Pitrou
|
5bc7ec9476
|
Merged revisions 80325 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80325 | antoine.pitrou | 2010-04-22 00:53:29 +0200 (jeu., 22 avril 2010) | 6 lines
Issue #7332: Remove the 16KB stack-based buffer in
PyMarshal_ReadLastObjectFromFile, which doesn't bring any noticeable
benefit compared to the dynamic memory allocation fallback. Patch by
Charles-François Natali.
........
|
2010-04-21 22:56:22 +00:00 |
|
Skip Montanaro
|
ba1e0f46ab
|
Issue 7147 - remove ability to attempt to build Python without complex number support (was broken anyway)
|
2009-10-18 14:25:35 +00:00 |
|