1. 35f6d36 [ 1497053 ] Let dicts propagate the exceptions in user __eq__(). by Armin Rigo · 18 years ago
  2. bf92f46 Convert more modules to METH_VARARGS. by Georg Brandl · 18 years ago
  3. 96a8c39 Make use of METH_O and METH_NOARGS where possible. by Georg Brandl · 18 years ago
  4. 80181e2 Fix compiler warning. by Georg Brandl · 18 years ago
  5. b569ee4 Handle PyMem_Malloc failure in pystrtod.c. Closes #1494671. by Georg Brandl · 18 years ago
  6. a1121fa Fix #1494605. by Georg Brandl · 18 years ago
  7. 5f6861d Correct None refcount issue in Mac modules. (Are they still used?) by Georg Brandl · 18 years ago
  8. 0fd1291 The empty string is a valid import path. (fixes #1496539) by Georg Brandl · 18 years ago
  9. 5e9d6cf PyErr_Display(), PyErr_WriteUnraisable(): Coverity found a cut-and-paste by Tim Peters · 18 years ago
  10. 7b9558d Conversion of exceptions over from faked-up classes to new-style C types. by Richard Jones · 18 years ago
  11. 7a83089 needforspeed: backed out the Py_LOCAL-isation of ceval; the massive in- by Fredrik Lundh · 18 years ago
  12. 7df5e7f Patch 1145039. by Tim Peters · 18 years ago
  13. 7784f12 Replace Py_BuildValue("OO") by PyTuple_Pack. by Georg Brandl · 18 years ago
  14. f4ef116 Need for speed: Patch #921466 : sys.path_importer_cache is now used to cache valid and by Georg Brandl · 18 years ago
  15. 1b94940 Py_LOCAL shouldn't be used for data; it works for some .NET 2003 compilers, by Fredrik Lundh · 18 years ago
  16. 57640f5 needforspeed: added PY_LOCAL_AGGRESSIVE macro to enable "aggressive" by Fredrik Lundh · 18 years ago
  17. b8b3c8e needforspeed: added Py_LOCAL macro, based on the LOCAL macro used by Fredrik Lundh · 18 years ago
  18. 0ed0587 Swap out bare malloc()/free() use for PyMem_MALLOC()/PyMem_FREE() . by Brett Cannon · 18 years ago
  19. 684fd0c Replace PyObject_CallFunction calls with only object args by Georg Brandl · 18 years ago
  20. da53afa A new table to help string->integer conversion was added yesterday to by Tim Peters · 18 years ago
  21. 143bdfc Update graminit.c for the fix for #1488915, Multiple dots in relative import by Thomas Wouters · 18 years ago
  22. c611f17 Replace tab inside comment with space. by Walter Dörwald · 18 years ago
  23. b713ec2 Bug #1334662 / patch #1335972: int(string, base) wrong answers. by Tim Peters · 18 years ago
  24. cebbefc Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects. by Richard Jones · 18 years ago
  25. 658d513 PyErr_NewException now accepts a tuple of base classes as its "base" parameter. by Georg Brandl · 18 years ago
  26. a43190b Patch #1492356: Port to Windows CE (patch set 1). by Martin v. Löwis · 18 years ago
  27. 4eafe9e Oops, I forgot to include this file in the last commit (46046): by Neal Norwitz · 18 years ago
  28. 5ef9224 Fix #1474677, non-keyword argument following keyword. by Neal Norwitz · 18 years ago
  29. 02104df Fix #132 from Coverity, retval could have been derefed by Neal Norwitz · 18 years ago
  30. 2a0ad4d Remove bogus DECREF of self. by Martin v. Löwis · 18 years ago
  31. 373f0a7 - Bug #1487966: Fix SystemError with conditional expression in assignment by Neal Norwitz · 18 years ago
  32. 879768d Change WindowsError to carry the Win32 error code in winerror, by Martin v. Löwis · 18 years ago
  33. b255069 Micro optimization. In the first case, we know that frame->f_exc_type by Neal Norwitz · 18 years ago
  34. da5b701 Get rid of __context__, per the latest changes to PEP 343 and python-dev by Guido van Rossum · 18 years ago
  35. c4edb0e SF #1479181: split open() and file() from being aliases for each other. by Neal Norwitz · 18 years ago
  36. abab1d4 Fix a warning on ppc (debian) by Neal Norwitz · 18 years ago
  37. 237bf40 Fix a warning on alpha by Neal Norwitz · 18 years ago
  38. 9df4e6f - Add new Warning class, ImportWarning by Thomas Wouters · 18 years ago
  39. 1ddba60 Define MAXPATHLEN to be at least PATH_MAX, if that's defined. Python uses by Thomas Wouters · 18 years ago
  40. 6685128 Fix more ssize_t issues. by Martin v. Löwis · 18 years ago
  41. 79cdce3 Teach Python/ceval.c's inlining of 'str += str' about Py_ssize_t sizes; this by Thomas Wouters · 18 years ago
  42. 1b04664 Change those parts of the Python-api that were functions in 2.4, and by Thomas Heller · 18 years ago
  43. a4ebc13 Refactor: Move code that uses co_lnotab from ceval to codeobject by Jeremy Hylton · 18 years ago
  44. 45294a9 Remove types from type_list if they have no objects by Martin v. Löwis · 18 years ago
  45. b507972 C++ compiler cleanup: cast... by Skip Montanaro · 18 years ago
  46. 53a6d1d C++ compiler cleanup: extern "C" a couple declarations, cast int to size_t by Skip Montanaro · 18 years ago
  47. 7ff54e7 C++ compiler cleanup: migrate to modsupport.h by Skip Montanaro · 18 years ago
  48. 6c10748 This patches fixes a number of byteorder problems in MacOSX specific code. by Ronald Oussoren · 18 years ago
  49. 1a26920 moduleName can be NULL by Neal Norwitz · 18 years ago
  50. b8f81d4 Add missing DECREF to PyErr_WriteUnraisable(). That function reports by Thomas Wouters · 18 years ago
  51. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 18 years ago
  52. ab0e284 Zap ZAP. by Martin v. Löwis · 18 years ago
  53. edf17d8 Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for by Thomas Wouters · 18 years ago
  54. 841747c Fix sys.getobjects(0): we get a reference to the by Martin v. Löwis · 18 years ago
  55. 5cb6936 Make Py_BuildValue, PyObject_CallFunction and by Martin v. Löwis · 18 years ago
  56. 6154616 SF Bug #1454485, array.array('u') could crash the interpreter when by Neal Norwitz · 18 years ago
  57. 8c0dc84 ALIGNMENT_SHIFT is not used by Neal Norwitz · 18 years ago
  58. da69041 Force 8-alignment of memory blocks, as needed on by Martin v. Löwis · 18 years ago
  59. f33dea2 Fix type errors. by Martin v. Löwis · 18 years ago
  60. 0cc56e5 Introduce asdl_int_seq, to hold cmpop_ty. by Martin v. Löwis · 18 years ago
  61. 869bacd revert - breaks build of Python/ast.c w/ gcc by Skip Montanaro · 18 years ago
  62. b940671 Use union to discriminate pointer types from enum/int types. by Skip Montanaro · 18 years ago
  63. 7f573f7 Add a test for Py_ssize_t. Correct typo in getargs.c. by Georg Brandl · 18 years ago
  64. b1ed7fa Replace INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 18 years ago
  65. ac6bd46 spread the extern "C" { } magic pixie dust around. Python itself builds now by Anthony Baxter · 18 years ago
  66. d691f1a casting nastiness to make C++ compiler happy by Anthony Baxter · 18 years ago
  67. e170937 Ignore the references to the dummy objects used as deleted keys by Armin Rigo · 18 years ago
  68. 9730038 avoid C++ name mangling for the _Py.*SizeT functions by Anthony Baxter · 18 years ago
  69. 019aec6 Make symtable.c safe for C++ compilers. Changed macros in the same way as by Anthony Baxter · 18 years ago
  70. 2c33fc7 per Jeremy's email, remove the _WITH_CAST versions of macros. g++ by Anthony Baxter · 18 years ago
  71. ced6cdd Part two of the fix for SF bug #1466641: Regenerate graminit.c and add test by Thomas Wouters · 18 years ago
  72. 64182fe Some more changes to make code compile under a C++ compiler. by Anthony Baxter · 18 years ago
  73. 7b782b6 more low-hanging fruit to make code compile under a C++ compiler. Not by Anthony Baxter · 18 years ago
  74. 2845750 Convert 0 to their respective enum types. Convert by Martin v. Löwis · 18 years ago
  75. 9eec489 Regenerate. by Martin v. Löwis · 18 years ago
  76. 01b8101 Make _kind types global for C++ compilation. by Martin v. Löwis · 18 years ago
  77. a863d33 low-hanging fruit in Python/ - g++ still hates all the enum_kind declarations by Anthony Baxter · 18 years ago
  78. 2ba9661 SF Patch #1463867: Improved generator finalization to allow generators by Phillip J. Eby · 18 years ago
  79. 14bc4e4 Use PyObject_* allocator since FutureFeatures is small by Neal Norwitz · 18 years ago
  80. b183a25 Fix some warnings on HP-UX when using cc/aCC by Neal Norwitz · 18 years ago
  81. ad7c44c Regenerate. by Martin v. Löwis · 18 years ago
  82. 4bdaa27 Fix refleak in __import__("") (probably the cause of the 2 refleaks in by Thomas Wouters · 18 years ago
  83. 8ddab27 Fix __import__("") to raise ValueError rather than return None. by Thomas Wouters · 18 years ago
  84. ed40ea1 Generate line number table entries for except handlers. by Jeremy Hylton · 18 years ago
  85. c95dd94 Disable .DLL as an extension for extension modules. by Martin v. Löwis · 18 years ago
  86. 2f327c1 Add lineno, col_offset to excephandler to enable future fix for by Jeremy Hylton · 18 years ago
  87. ea62d25 Bug #1421664: Set sys.stderr.encoding by Martin v. Löwis · 18 years ago
  88. cbce280 Don't abbreviate ABS, use long name ABSOLUTE. by Neal Norwitz · 18 years ago
  89. 19379f1 * Fix a refleak of *_attributes. by Neal Norwitz · 18 years ago
  90. 92e212f Accept keyword arguments for __import__ and doc the addition of the level param from PEP 328. by Neal Norwitz · 18 years ago
  91. 12603c4 Expand comments on line numbers and blocks. by Jeremy Hylton · 18 years ago
  92. ccadf84 Patch #1460496: round() now accepts keyword arguments. by Georg Brandl · 18 years ago
  93. 296aef8 Expand comments. by Jeremy Hylton · 18 years ago
  94. 62e97f0 In format strings slinging Py_ssize_t, unconditionally by Tim Peters · 18 years ago
  95. d34fa52 answer a question from a comment by Armin Rigo · 18 years ago
  96. 33b730e Fix SF bug #1458903 with AST compiler. by Neal Norwitz · 18 years ago
  97. c9d78aa Years in the making. by Tim Peters · 18 years ago
  98. 4ec3c26 Found this in an old email message from Hartmut Goebel. by Skip Montanaro · 18 years ago
  99. d478f34 Patch #1396919: Reenable the system scope threads on FreeBSD 5.4 by Hye-Shik Chang · 18 years ago
  100. 9076842 Fix a ssize_t issue by Neal Norwitz · 18 years ago