1. fe2e839 Fix reference leaks introduced by the patch for issue #5308. by Serhiy Storchaka · 11 years ago
  2. 34fe1b7 Issue #5308: Raise ValueError when marshalling too large object (a sequence by Serhiy Storchaka · 12 years ago
  3. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  4. 18e63fb Issue #7332: Remove the 16KB stack-based buffer in by Antoine Pitrou · 14 years ago
  5. bea424a more _PyString_Resize error checking by Benjamin Peterson · 14 years ago
  6. 51ae492 Set retval on PyOS_string_to_double failure. by Mark Dickinson · 15 years ago
  7. b218d28 Removed PyOS_ascii_atof from marshal.c, as mentioned in issue 7117. Also brings it more in line with py3k. by Eric Smith · 15 years ago
  8. 1566927 Removed calls to PyFloat_AsReprString. by Eric Smith · 15 years ago
  9. 7e7a3ec Issue #7019: Unmarshalling of bad long data could produce unnormalized by Mark Dickinson · 15 years ago
  10. 525cffc Move news item to correct section, remove spurious 'see below' from docstring. by R. David Murray · 15 years ago
  11. a3ec697 Issue 5994: add docstrings to marshal. by R. David Murray · 15 years ago
  12. efc82f7 Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. by Mark Dickinson · 15 years ago
  13. 8eba5ed Make marshalling errors a little more informative as to what went wrong by Nick Coghlan · 16 years ago
  14. 305480c Issue 3116: fix quadratic behavior in marshal.dumps(). by Raymond Hettinger · 16 years ago
  15. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  16. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  17. 6c02916 #1792: Improve performance of marshal.dumps() on large objects by increasing by Andrew M. Kuchling · 16 years ago
  18. fb43d1e Fix refleak by Neal Norwitz · 17 years ago
  19. 67ac066 Removed unused var by Christian Heimes · 17 years ago
  20. bf3d1d5 Removed unnecessary conditional (spotted by Neal Norwitz). by Raymond Hettinger · 17 years ago
  21. 52716c9 Let marshal built-up sets and frozensets one element at a time (without creating an intermediate tuple). by Raymond Hettinger · 17 years ago
  22. dee3f65 Revert PySet_Add() changes. by Raymond Hettinger · 17 years ago
  23. b423f02 Let marshal build-up sets and frozensets one element at a time. by Raymond Hettinger · 17 years ago
  24. 12e9420 Fix marshal's incorrect handling of subclasses of builtin types (backport candidate). by Raymond Hettinger · 17 years ago
  25. 15f2661 Fix Coverity 185-186: If the passed in FILE is NULL, uninitialized memory by Neal Norwitz · 17 years ago
  26. f6b0e4d Last try for tweaking the max stack depth. 5000 was the original value, by Neal Norwitz · 17 years ago
  27. 4f82bc3 Set the depth to something very small to try to determine if the by Neal Norwitz · 17 years ago
  28. 117ef08 Reduce the max stack depth to see if this fixes the segfaults on by Neal Norwitz · 17 years ago
  29. b1a9b37 Fix bug in marshal where bad data would cause a segfault due to by Neal Norwitz · 17 years ago
  30. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  31. edb2168 This code is actually not used unless WITHOUT_COMPLEX is defined. by Neal Norwitz · 18 years ago
  32. bf92f46 Convert more modules to METH_VARARGS. by Georg Brandl · 18 years ago
  33. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 19 years ago
  34. 695934a Make Py_ssize_t clean. by Thomas Wouters · 19 years ago
  35. 7464b43 Fix incompatible assignment warning from previous checkin. by Thomas Wouters · 19 years ago
  36. 7f401ef Fix gcc (4.0.x) warning about use of uninitialized variables. by Thomas Wouters · 19 years ago
  37. 67baee6 Move cast to suppress warning. by Martin v. Löwis · 19 years ago
  38. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  39. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  40. ef78529 version was not initialized properly by Neal Norwitz · 19 years ago
  41. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 19 years ago
  42. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  43. beb3101 Add a C API for sets and frozensets. by Raymond Hettinger · 19 years ago
  44. c9371d4 Fix signedness of various char variables to stop causing a warning under gcc 4. by Brett Cannon · 19 years ago
  45. f2ca5af Fix bug by Michael W. Hudson · 19 years ago
  46. 01fca11 Remove extraneous format character from PyArg_ParseTuple call in marshal_loads. by Michael W. Hudson · 19 years ago
  47. 6d6917b Fix a couple of crashing-on-malformed data marshal bugs. by Michael W. Hudson · 19 years ago
  48. df88846 This is my patch: by Michael W. Hudson · 19 years ago
  49. d7c27be remove unused variable by Fred Drake · 20 years ago
  50. a422c34 SF 1098985: set objects cannot be marshalled by Raymond Hettinger · 20 years ago
  51. 2ccea17 Any call to marshal.dumps() with the new optional argument 'version' just by Armin Rigo · 20 years ago
  52. ef82d2f Patch #923098: Share interned strings in marshal. by Martin v. Löwis · 20 years ago
  53. d85c452 Make private function static by Neal Norwitz · 20 years ago
  54. 737ea82 Patch #774665: Make Python LC_NUMERIC agnostic. by Martin v. Löwis · 20 years ago
  55. 01ab279 Marshal clean-up (SF patch #873224) by Armin Rigo · 20 years ago
  56. 6bc06ec Bug #794140: cygwin builds do not embed by Jason Tishler · 21 years ago
  57. 37d5a15 Whitespace normalization. by Thomas Heller · 22 years ago
  58. 3e1c18a Fix SF 588452: debug build crashes on marshal.dumps([128] * 1000). by Thomas Heller · 22 years ago
  59. 7fdcb41 Fix SF bug # 561858 Assertion with very long lists by Neal Norwitz · 22 years ago
  60. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  61. 031829d Use symbolic METH_VARARGS instead of 1 for ml_flags by Neal Norwitz · 22 years ago
  62. 9f64caa Use PyObject_CheckReadBuffer(). by Jeremy Hylton · 23 years ago
  63. b8cf3e6 SF patch #470393 (Jim Ahlstrom): Add missing marshal function by Guido van Rossum · 23 years ago
  64. 8019913 fix for part of bug #453523: disable unmarshalling of code objects in by Michael W. Hudson · 23 years ago
  65. 8211237 marshal.c r_long64: When reading a TYPE_INT64 value on a box with 32-bit by Tim Peters · 23 years ago
  66. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  67. 5ca576e Merging the gen-branch into the main line, at Guido's direction. Yay! by Tim Peters · 23 years ago
  68. 72f98e9 SF bug #422177: Results from .pyc differs from .py by Tim Peters · 23 years ago
  69. 4471400 test_pickle works on sizeof(long)==8 boxes again. by Tim Peters · 23 years ago
  70. d9b9ac8 It's unclear whether PyMarshal_XXX() are part of the public or private API. by Tim Peters · 24 years ago
  71. 64949cb PEP 227 implementation by Jeremy Hylton · 24 years ago
  72. 691e0e9 Variant of SF patch 103252: Startup optimize: read *.pyc as string, not with getc(). by Tim Peters · 24 years ago
  73. 102e457 SF bug 119622: compile errors due to redundant atof decls. I don't understand by Tim Peters · 24 years ago
  74. e84b740 Obscure marshal fixes: by Tim Peters · 24 years ago
  75. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  76. 8315ea5 Included assert.h in Python.h -- it's absurd that this basic tool of by Tim Peters · 24 years ago
  77. 1153438 -- changed w_more to take an integer instead of a char by Fredrik Lundh · 24 years ago
  78. f70ef4f Mass ANSIfication of function definitions. Doesn't cover all 'extern' by Thomas Wouters · 24 years ago
  79. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  80. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  81. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  82. 98626cd Urmpf. Quality control on this patch lapsed a bit. :-( by Guido van Rossum · 24 years ago
  83. 6da0b91 Michael Hudson <mwh21@cam.ac.uk>: by Fred Drake · 24 years ago
  84. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  85. 2efa369 Use modern PyArg_ParseTuple style, with function names. by Guido van Rossum · 24 years ago
  86. c279b53 Marc-Andre Lemburg: support marshalling Unicode objects (code 'u'). by Guido van Rossum · 25 years ago
  87. 5bd893b The previous checkin contained an experiment of Greg Stein's that wasn't by Guido van Rossum · 26 years ago
  88. d076c73 Changes to support other object types besides strings by Guido van Rossum · 26 years ago
  89. a45cb45 When unmarshalling, add test for negative lengths on strings, tuples by Guido van Rossum · 26 years ago
  90. ba7cc0c Remove unnecessary PyErr_Clear(). by Guido van Rossum · 26 years ago
  91. 730806d Make new gcc -Wall happy by Guido van Rossum · 26 years ago
  92. 6fc06e7 Plugged a leak. (The same as the one plugged in compile.c -- forgot by Guido van Rossum · 27 years ago
  93. 7e8d26d PyFile_WriteString now returns an error indicator instead of calling by Guido van Rossum · 27 years ago
  94. 79f25d9 Quickly renamed the remaining files -- this directory is done. by Guido van Rossum · 27 years ago
  95. 45b8391 New form of PyFPE_END_PROTECT macro. by Guido van Rossum · 28 years ago
  96. 0ae748d Changes for Lee Busby's SIGFPE patch set. by Guido van Rossum · 28 years ago
  97. 0f4bbd2 Keep gcc -Wall happy. by Guido van Rossum · 28 years ago
  98. d031c89 Marshal the line number table of code objects. by Guido van Rossum · 28 years ago
  99. 98a9b31 Marshal the new stacksize item in code objects. by Guido van Rossum · 28 years ago
  100. c1547d9 Better way to handle 64-bit ints, keeping gcc -Wall happy. by Guido van Rossum · 28 years ago