1. 7ff54e7 C++ compiler cleanup: migrate to modsupport.h by Skip Montanaro · 18 years ago
  2. 6c10748 This patches fixes a number of byteorder problems in MacOSX specific code. by Ronald Oussoren · 18 years ago
  3. 1a26920 moduleName can be NULL by Neal Norwitz · 18 years ago
  4. b8f81d4 Add missing DECREF to PyErr_WriteUnraisable(). That function reports by Thomas Wouters · 18 years ago
  5. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 18 years ago
  6. ab0e284 Zap ZAP. by Martin v. Löwis · 18 years ago
  7. edf17d8 Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for by Thomas Wouters · 18 years ago
  8. 841747c Fix sys.getobjects(0): we get a reference to the by Martin v. Löwis · 18 years ago
  9. 5cb6936 Make Py_BuildValue, PyObject_CallFunction and by Martin v. Löwis · 18 years ago
  10. 6154616 SF Bug #1454485, array.array('u') could crash the interpreter when by Neal Norwitz · 18 years ago
  11. 8c0dc84 ALIGNMENT_SHIFT is not used by Neal Norwitz · 18 years ago
  12. da69041 Force 8-alignment of memory blocks, as needed on by Martin v. Löwis · 18 years ago
  13. f33dea2 Fix type errors. by Martin v. Löwis · 18 years ago
  14. 0cc56e5 Introduce asdl_int_seq, to hold cmpop_ty. by Martin v. Löwis · 18 years ago
  15. 869bacd revert - breaks build of Python/ast.c w/ gcc by Skip Montanaro · 18 years ago
  16. b940671 Use union to discriminate pointer types from enum/int types. by Skip Montanaro · 18 years ago
  17. 7f573f7 Add a test for Py_ssize_t. Correct typo in getargs.c. by Georg Brandl · 18 years ago
  18. b1ed7fa Replace INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 18 years ago
  19. ac6bd46 spread the extern "C" { } magic pixie dust around. Python itself builds now by Anthony Baxter · 18 years ago
  20. d691f1a casting nastiness to make C++ compiler happy by Anthony Baxter · 18 years ago
  21. e170937 Ignore the references to the dummy objects used as deleted keys by Armin Rigo · 18 years ago
  22. 9730038 avoid C++ name mangling for the _Py.*SizeT functions by Anthony Baxter · 18 years ago
  23. 019aec6 Make symtable.c safe for C++ compilers. Changed macros in the same way as by Anthony Baxter · 18 years ago
  24. 2c33fc7 per Jeremy's email, remove the _WITH_CAST versions of macros. g++ by Anthony Baxter · 18 years ago
  25. ced6cdd Part two of the fix for SF bug #1466641: Regenerate graminit.c and add test by Thomas Wouters · 18 years ago
  26. 64182fe Some more changes to make code compile under a C++ compiler. by Anthony Baxter · 18 years ago
  27. 7b782b6 more low-hanging fruit to make code compile under a C++ compiler. Not by Anthony Baxter · 18 years ago
  28. 2845750 Convert 0 to their respective enum types. Convert by Martin v. Löwis · 18 years ago
  29. 9eec489 Regenerate. by Martin v. Löwis · 18 years ago
  30. 01b8101 Make _kind types global for C++ compilation. by Martin v. Löwis · 18 years ago
  31. a863d33 low-hanging fruit in Python/ - g++ still hates all the enum_kind declarations by Anthony Baxter · 18 years ago
  32. 2ba9661 SF Patch #1463867: Improved generator finalization to allow generators by Phillip J. Eby · 18 years ago
  33. 14bc4e4 Use PyObject_* allocator since FutureFeatures is small by Neal Norwitz · 18 years ago
  34. b183a25 Fix some warnings on HP-UX when using cc/aCC by Neal Norwitz · 18 years ago
  35. ad7c44c Regenerate. by Martin v. Löwis · 18 years ago
  36. 4bdaa27 Fix refleak in __import__("") (probably the cause of the 2 refleaks in by Thomas Wouters · 18 years ago
  37. 8ddab27 Fix __import__("") to raise ValueError rather than return None. by Thomas Wouters · 18 years ago
  38. ed40ea1 Generate line number table entries for except handlers. by Jeremy Hylton · 18 years ago
  39. c95dd94 Disable .DLL as an extension for extension modules. by Martin v. Löwis · 18 years ago
  40. 2f327c1 Add lineno, col_offset to excephandler to enable future fix for by Jeremy Hylton · 18 years ago
  41. ea62d25 Bug #1421664: Set sys.stderr.encoding by Martin v. Löwis · 18 years ago
  42. cbce280 Don't abbreviate ABS, use long name ABSOLUTE. by Neal Norwitz · 18 years ago
  43. 19379f1 * Fix a refleak of *_attributes. by Neal Norwitz · 18 years ago
  44. 92e212f Accept keyword arguments for __import__ and doc the addition of the level param from PEP 328. by Neal Norwitz · 18 years ago
  45. 12603c4 Expand comments on line numbers and blocks. by Jeremy Hylton · 18 years ago
  46. ccadf84 Patch #1460496: round() now accepts keyword arguments. by Georg Brandl · 18 years ago
  47. 296aef8 Expand comments. by Jeremy Hylton · 18 years ago
  48. 62e97f0 In format strings slinging Py_ssize_t, unconditionally by Tim Peters · 18 years ago
  49. d34fa52 answer a question from a comment by Armin Rigo · 18 years ago
  50. 33b730e Fix SF bug #1458903 with AST compiler. by Neal Norwitz · 18 years ago
  51. c9d78aa Years in the making. by Tim Peters · 18 years ago
  52. 4ec3c26 Found this in an old email message from Hartmut Goebel. by Skip Montanaro · 18 years ago
  53. d478f34 Patch #1396919: Reenable the system scope threads on FreeBSD 5.4 by Hye-Shik Chang · 18 years ago
  54. 9076842 Fix a ssize_t issue by Neal Norwitz · 18 years ago
  55. e98ccf6 Forward port MvL's fix in 43227: by Neal Norwitz · 18 years ago
  56. 2aa9a5d Use macro versions instead of function versions when we already know the type. by Neal Norwitz · 18 years ago
  57. ba8e180 Release codecs variable earlier. by Walter Dörwald · 18 years ago
  58. 5c170fd Fix some missing checks after PyTuple_New, PyList_New, PyDict_New by Georg Brandl · 18 years ago
  59. 7785868 Fix bug 1441408 where a double colon didn't trigger extended slice semantics (applies patch 1452332) by Nick Coghlan · 18 years ago
  60. d53850a Fix wrong argument format in PyCodec_IncrementalEncoder() and by Walter Dörwald · 18 years ago
  61. 4fe4ed2 Make mktuple consistent with mklist to get rid of Coverity warnings. Also use macro version of SetItem since we know everything is setup. by Neal Norwitz · 18 years ago
  62. abb02e5 Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclass by Walter Dörwald · 18 years ago
  63. eadee9a Fix SF bug #1448804 and ad a test to ensure that all subscript operations continue to be handled correctly by Nick Coghlan · 18 years ago
  64. f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 18 years ago
  65. 72c2c06 Try to be a bit more consistent on all platforms: python . python < . by Neal Norwitz · 18 years ago
  66. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  67. 9d78550 Address an coverity issue. Coverity was complaining about a line that's fine, by Guido van Rossum · 18 years ago
  68. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 18 years ago
  69. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 18 years ago
  70. f2e0c45 Fix warnings on x86 (32-bit). by Neal Norwitz · 18 years ago
  71. 3e90fa5 Try to cleanup the error handling a bit so there aren't false positives by Neal Norwitz · 18 years ago
  72. 99b93c2 Use %Id for size_t-ish things on Win64. by Martin v. Löwis · 18 years ago
  73. 4281cef Use Py_ssize_t for _Py_RefTotal. by Neal Norwitz · 18 years ago
  74. 9589ee2 Tabify by Neal Norwitz · 18 years ago
  75. e92fba0 Get rid of run_err_mod(). It was only used in two places. by Neal Norwitz · 18 years ago
  76. 10be2ea SF bug 1442442: LIST_APPEND optimization got lost in the AST merge. Add it back. by Neal Norwitz · 18 years ago
  77. 9742f27 Remove commented code by Neal Norwitz · 18 years ago
  78. 3909ff6 Text moved to PEP 339. by Brett Cannon · 18 years ago
  79. 5118517 Fix minor docstring typo. by Brett Cannon · 18 years ago
  80. f638630 Document the purpose of the struct _block members. by Tim Peters · 18 years ago
  81. 6fd92dc Added words about what PyArena_Malloc() does. by Tim Peters · 18 years ago
  82. 8cfaa0e Trimmed trailing whitespace. by Tim Peters · 18 years ago
  83. 2e63b73 Fix refleak in PyErr_Display(). by Brett Cannon · 18 years ago
  84. d9cf85f Fix refleak if from __future__ import was not first by Neal Norwitz · 18 years ago
  85. 814e938 Use Py_ssize_t since we are working with list size below by Neal Norwitz · 18 years ago
  86. 46872b1 Add a missing Py_DECREF to BaseException__unicode__ . by Brett Cannon · 18 years ago
  87. 3a5468e Update known issues to reflect reality by Neal Norwitz · 18 years ago
  88. 03e5bc0 Fix memory leak on attributes. by Martin v. Löwis · 18 years ago
  89. 695934a Make Py_ssize_t clean. by Thomas Wouters · 18 years ago
  90. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 18 years ago
  91. 7464b43 Fix incompatible assignment warning from previous checkin. by Thomas Wouters · 18 years ago
  92. 7f401ef Fix gcc (4.0.x) warning about use of uninitialized variables. by Thomas Wouters · 18 years ago
  93. 54ac294 Document PEP 352 changes. Also added GeneratorExit. by Brett Cannon · 18 years ago
  94. 65b3dab Fix uninitialized value. (Why are we using bools instead of ints, like we do by Thomas Wouters · 18 years ago
  95. 0b300be Fix more memory leaks. Will backport to 2.4. by Martin v. Löwis · 18 years ago
  96. c3547a3 Fix C99-ism, and add XXX to comment by Thomas Wouters · 18 years ago
  97. 056a69c Reconst parameters that lost their const in the AST merge. by Martin v. Löwis · 18 years ago
  98. e9357b2 Tabify and reflow some long lines. by Jeremy Hylton · 18 years ago
  99. 224003b Add missing DECREF. by Jeremy Hylton · 18 years ago
  100. 572a9f3 Use %zd format characters for Py_ssize_t types. by Thomas Wouters · 18 years ago