1. c173b48 Add some asserts and update comments by Neal Norwitz · 19 years ago
  2. 07aadb1 Add PyErr_WarnEx() so C code can pass the stacklevel to warnings.warn(). by Neal Norwitz · 19 years ago
  3. 0d62a06 Patch #1531113: Fix augmented assignment with yield expressions. by Neal Norwitz · 19 years ago
  4. f7575d0 Bug #1529871: The speed enhancement patch #921466 broke Python's compliance by Phillip J. Eby · 19 years ago
  5. bc24eee Bug #1521947: possible bug in mystrtol.c with recent gcc. by Tim Peters · 19 years ago
  6. 5f13578 Part of bug #1523610: fix miscalculation of buffer length. by Georg Brandl · 19 years ago
  7. 82247cb bugfix: PyThread_start_new_thread() returns the thread ID, not a flag; by Andrew MacIntyre · 19 years ago
  8. f71847e If the for loop isn't entered, entryblock will be NULL. If passed by Neal Norwitz · 19 years ago
  9. 18b6adf Handle more mem alloc issues found with failmalloc by Neal Norwitz · 19 years ago
  10. b59d08c Fix more memory allocation issues found with failmalloc. by Neal Norwitz · 19 years ago
  11. d12bd01 Handle more memory allocation failures without crashing. by Neal Norwitz · 19 years ago
  12. 33722ae Speel initialise write. Tanks Anthony. by Neal Norwitz · 19 years ago
  13. e1fdb32 Handle allocation failures gracefully. Found with failmalloc. by Neal Norwitz · 19 years ago
  14. 112aad3 SF bug 1524317: configure --without-threads fails to build by Tim Peters · 19 years ago
  15. a5e4f22 Reported by Klocwork #151. by Neal Norwitz · 19 years ago
  16. c0cde4d Fix memory leak under some conditions. by Neal Norwitz · 19 years ago
  17. 84be93b Bug #1512814, Fix incorrect lineno's when code within a function by Neal Norwitz · 19 years ago
  18. 9dceedb Accept long options "--help" and "--version". by Georg Brandl · 19 years ago
  19. a1f1090 Actually change the MAGIC #. Create a new section for 2.5c1 and mention the impact of changing the MAGIC #. by Neal Norwitz · 19 years ago
  20. edef2be Bug #1520864: unpacking singleton tuples in for loop (for x, in) work again. by Neal Norwitz · 19 years ago
  21. 249f6b1 Add missing Py_DECREFs. by Thomas Heller · 19 years ago
  22. 32a8361 After approval from Anthony, merge the tim-current_frames by Tim Peters · 19 years ago
  23. ed65755 Bug #1512814, Fix incorrect lineno's when code at module scope by Neal Norwitz · 19 years ago
  24. 28746ab On 64 bit systems, int literals that use less than 64 bits are now ints by Neal Norwitz · 19 years ago
  25. 6ec6ab0 Fix SF bug 1441486: bad unary minus folding in compiler. by Neil Schemenauer · 19 years ago
  26. 0e07b60 Fix AST compiler bug #1501934: incorrect LOAD/STORE_GLOBAL generation. by Neil Schemenauer · 19 years ago
  27. fb48afa Fix SF bug #1519018: 'as' is now validated properly in import statements by Neal Norwitz · 19 years ago
  28. a4df11d Fix refleaks reported by Shane Hathaway in SF patch #1515361. This change by Neal Norwitz · 19 years ago
  29. fcfff0a Bug #1417699: Reject locale-specific decimal point in float() and atof(). by Martin v. Löwis · 19 years ago
  30. e6a1cb9 Bug #1511381: codec_getstreamcodec() in codec.c is corrected to by Hye-Shik Chang · 19 years ago
  31. 9291332 Patch #1454481: Make thread stack size runtime tunable. by Andrew MacIntyre · 19 years ago
  32. 245ce8d i and j are initialized below when used. No need to do it twice by Neal Norwitz · 19 years ago
  33. b9845e7 Get rid of f_restricted too. Doc the other 4 ints that were already removed by Neal Norwitz · 19 years ago
  34. 2585ad5 Fix indentation of case and a Py_ssize_t issue. by Neal Norwitz · 19 years ago
  35. 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 19 years ago
  36. 98251f8 Argh. "integer" is a very confusing word ;) by Georg Brandl · 19 years ago
  37. 22ccbbc Bug #1502750: Fix getargs "i" format to use LONG_MIN and LONG_MAX for bounds checking. by Georg Brandl · 19 years ago
  38. 02f1d0d _PySys_Init(): It's rarely a good idea to size a buffer to the by Tim Peters · 19 years ago
  39. 4f7a722 Add 3 more bytes to a buffer to cover constants in string and null byte on top of 10 possible digits for an int. by Brett Cannon · 19 years ago
  40. 28eeefe Revert revisions: by Tim Peters · 19 years ago
  41. ddbaa66 Patch #1346214: correctly optimize away "if 0"-style stmts by Georg Brandl · 19 years ago
  42. 63f0db6 clean up function declarations to conform to PEP-7 style. by Andrew MacIntyre · 19 years ago
  43. 6539d2d Patch #1454481: Make thread stack size runtime tunable. by Andrew MacIntyre · 19 years ago
  44. 35f6d36 [ 1497053 ] Let dicts propagate the exceptions in user __eq__(). by Armin Rigo · 19 years ago
  45. bf92f46 Convert more modules to METH_VARARGS. by Georg Brandl · 19 years ago
  46. 96a8c39 Make use of METH_O and METH_NOARGS where possible. by Georg Brandl · 19 years ago
  47. 80181e2 Fix compiler warning. by Georg Brandl · 19 years ago
  48. b569ee4 Handle PyMem_Malloc failure in pystrtod.c. Closes #1494671. by Georg Brandl · 19 years ago
  49. a1121fa Fix #1494605. by Georg Brandl · 19 years ago
  50. 5f6861d Correct None refcount issue in Mac modules. (Are they still used?) by Georg Brandl · 19 years ago
  51. 0fd1291 The empty string is a valid import path. (fixes #1496539) by Georg Brandl · 19 years ago
  52. 5e9d6cf PyErr_Display(), PyErr_WriteUnraisable(): Coverity found a cut-and-paste by Tim Peters · 19 years ago
  53. 7b9558d Conversion of exceptions over from faked-up classes to new-style C types. by Richard Jones · 19 years ago
  54. 7a83089 needforspeed: backed out the Py_LOCAL-isation of ceval; the massive in- by Fredrik Lundh · 19 years ago
  55. 7df5e7f Patch 1145039. by Tim Peters · 19 years ago
  56. 7784f12 Replace Py_BuildValue("OO") by PyTuple_Pack. by Georg Brandl · 19 years ago
  57. f4ef116 Need for speed: Patch #921466 : sys.path_importer_cache is now used to cache valid and by Georg Brandl · 19 years ago
  58. 1b94940 Py_LOCAL shouldn't be used for data; it works for some .NET 2003 compilers, by Fredrik Lundh · 19 years ago
  59. 57640f5 needforspeed: added PY_LOCAL_AGGRESSIVE macro to enable "aggressive" by Fredrik Lundh · 19 years ago
  60. b8b3c8e needforspeed: added Py_LOCAL macro, based on the LOCAL macro used by Fredrik Lundh · 19 years ago
  61. 0ed0587 Swap out bare malloc()/free() use for PyMem_MALLOC()/PyMem_FREE() . by Brett Cannon · 19 years ago
  62. 684fd0c Replace PyObject_CallFunction calls with only object args by Georg Brandl · 19 years ago
  63. da53afa A new table to help string->integer conversion was added yesterday to by Tim Peters · 19 years ago
  64. 143bdfc Update graminit.c for the fix for #1488915, Multiple dots in relative import by Thomas Wouters · 19 years ago
  65. c611f17 Replace tab inside comment with space. by Walter Dörwald · 19 years ago
  66. b713ec2 Bug #1334662 / patch #1335972: int(string, base) wrong answers. by Tim Peters · 19 years ago
  67. cebbefc Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects. by Richard Jones · 19 years ago
  68. 658d513 PyErr_NewException now accepts a tuple of base classes as its "base" parameter. by Georg Brandl · 19 years ago
  69. a43190b Patch #1492356: Port to Windows CE (patch set 1). by Martin v. Löwis · 19 years ago
  70. 4eafe9e Oops, I forgot to include this file in the last commit (46046): by Neal Norwitz · 19 years ago
  71. 5ef9224 Fix #1474677, non-keyword argument following keyword. by Neal Norwitz · 19 years ago
  72. 02104df Fix #132 from Coverity, retval could have been derefed by Neal Norwitz · 19 years ago
  73. 2a0ad4d Remove bogus DECREF of self. by Martin v. Löwis · 19 years ago
  74. 373f0a7 - Bug #1487966: Fix SystemError with conditional expression in assignment by Neal Norwitz · 19 years ago
  75. 879768d Change WindowsError to carry the Win32 error code in winerror, by Martin v. Löwis · 19 years ago
  76. b255069 Micro optimization. In the first case, we know that frame->f_exc_type by Neal Norwitz · 19 years ago
  77. da5b701 Get rid of __context__, per the latest changes to PEP 343 and python-dev by Guido van Rossum · 19 years ago
  78. c4edb0e SF #1479181: split open() and file() from being aliases for each other. by Neal Norwitz · 19 years ago
  79. abab1d4 Fix a warning on ppc (debian) by Neal Norwitz · 19 years ago
  80. 237bf40 Fix a warning on alpha by Neal Norwitz · 19 years ago
  81. 9df4e6f - Add new Warning class, ImportWarning by Thomas Wouters · 19 years ago
  82. 1ddba60 Define MAXPATHLEN to be at least PATH_MAX, if that's defined. Python uses by Thomas Wouters · 19 years ago
  83. 6685128 Fix more ssize_t issues. by Martin v. Löwis · 19 years ago
  84. 79cdce3 Teach Python/ceval.c's inlining of 'str += str' about Py_ssize_t sizes; this by Thomas Wouters · 19 years ago
  85. 1b04664 Change those parts of the Python-api that were functions in 2.4, and by Thomas Heller · 19 years ago
  86. a4ebc13 Refactor: Move code that uses co_lnotab from ceval to codeobject by Jeremy Hylton · 19 years ago
  87. 45294a9 Remove types from type_list if they have no objects by Martin v. Löwis · 19 years ago
  88. b507972 C++ compiler cleanup: cast... by Skip Montanaro · 19 years ago
  89. 53a6d1d C++ compiler cleanup: extern "C" a couple declarations, cast int to size_t by Skip Montanaro · 19 years ago
  90. 7ff54e7 C++ compiler cleanup: migrate to modsupport.h by Skip Montanaro · 19 years ago
  91. 6c10748 This patches fixes a number of byteorder problems in MacOSX specific code. by Ronald Oussoren · 19 years ago
  92. 1a26920 moduleName can be NULL by Neal Norwitz · 19 years ago
  93. b8f81d4 Add missing DECREF to PyErr_WriteUnraisable(). That function reports by Thomas Wouters · 19 years ago
  94. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 19 years ago
  95. ab0e284 Zap ZAP. by Martin v. Löwis · 19 years ago
  96. edf17d8 Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for by Thomas Wouters · 19 years ago
  97. 841747c Fix sys.getobjects(0): we get a reference to the by Martin v. Löwis · 19 years ago
  98. 5cb6936 Make Py_BuildValue, PyObject_CallFunction and by Martin v. Löwis · 19 years ago
  99. 6154616 SF Bug #1454485, array.array('u') could crash the interpreter when by Neal Norwitz · 19 years ago
  100. 8c0dc84 ALIGNMENT_SHIFT is not used by Neal Norwitz · 19 years ago