1. f7afe95 Patch #1045620: Prepend Modules/ before Setup in stdout. by Martin v. Löwis · 18 years ago
  2. f24de1e Patch #1470300: Port _hotshot to QNX4.25 port. by Martin v. Löwis · 18 years ago
  3. 7580149 Patch #1355883: Build Python-ast.c and Python-ast.h by Martin v. Löwis · 18 years ago
  4. 969ef75 Show case: reference cycles involving only the ob_type field are rather by Armin Rigo · 18 years ago
  5. db4018f Typo fix by Andrew M. Kuchling · 18 years ago
  6. 0f48d98 Patch #1324762: Change --with-cxx to --with-cxx-main. by Martin v. Löwis · 18 years ago
  7. 15be5ec Call encode()/decode() with final==True as the last call in the by Walter Dörwald · 18 years ago
  8. 121c98c Typo fixes by Andrew M. Kuchling · 18 years ago
  9. c709584 Add more items by Andrew M. Kuchling · 18 years ago
  10. 984bdd7 Typo fix by Andrew M. Kuchling · 18 years ago
  11. 75ba244 Add an item and a reminder by Andrew M. Kuchling · 18 years ago
  12. 5cb6936 Make Py_BuildValue, PyObject_CallFunction and by Martin v. Löwis · 18 years ago
  13. 38a76a1 Copy note from leakers README here too. We want to keep all test cases. by Neal Norwitz · 18 years ago
  14. 6212922 Restore test tee with some modifications. by Neal Norwitz · 18 years ago
  15. cde8750 Move the old test_generator_cycle.py which leaked but was removed into the test by Neal Norwitz · 18 years ago
  16. 03f3be5 Update notes to address cyclic garbage and what should happen when a test is fixed. by Neal Norwitz · 18 years ago
  17. 6154616 SF Bug #1454485, array.array('u') could crash the interpreter when by Neal Norwitz · 18 years ago
  18. 384178c Added George Yoshida. by Tim Peters · 18 years ago
  19. 8c0dc84 ALIGNMENT_SHIFT is not used by Neal Norwitz · 18 years ago
  20. 7db4f24 When using -R, lots of "*** DocTestRunner.merge:" nuisance messages by Tim Peters · 18 years ago
  21. 8e6480c Whitespace normalization. by Tim Peters · 18 years ago
  22. 3adc4aa raise the minimum supported BerkeleyDB version to 3.3 and add notes to by Gregory P. Smith · 18 years ago
  23. da69041 Force 8-alignment of memory blocks, as needed on by Martin v. Löwis · 18 years ago
  24. f33dea2 Fix type errors. by Martin v. Löwis · 18 years ago
  25. 5d4cf5e Typo fix by Andrew M. Kuchling · 18 years ago
  26. 3b4fb04 [Bug #1464571] Mention that generator's .gi_frame can now be None by Andrew M. Kuchling · 18 years ago
  27. 6fc6976 Add some items by Andrew M. Kuchling · 18 years ago
  28. 0cc56e5 Introduce asdl_int_seq, to hold cmpop_ty. by Martin v. Löwis · 18 years ago
  29. 0f1955d Include more detail on Coverity results and add a link; minor edits by Andrew M. Kuchling · 18 years ago
  30. 61434b6 Describe sys.subversion, Py_GetBuildInfo() Add metadata example by Andrew M. Kuchling · 18 years ago
  31. aa571c9 Add missing word by Andrew M. Kuchling · 18 years ago
  32. 869bacd revert - breaks build of Python/ast.c w/ gcc by Skip Montanaro · 18 years ago
  33. b940671 Use union to discriminate pointer types from enum/int types. by Skip Montanaro · 18 years ago
  34. 83687c9 Change more occurrences of maxsplit to Py_ssize_t. by Martin v. Löwis · 18 years ago
  35. 9c83076 Change maxsplit types to Py_ssize_t. by Martin v. Löwis · 18 years ago
  36. 2f3f136 Allocate the 0x1D1A0000 base adress for the _ctypes extension module. by Thomas Heller · 18 years ago
  37. 9d54837 Add two entries about how to actually clear a list. by Georg Brandl · 18 years ago
  38. 7f573f7 Add a test for Py_ssize_t. Correct typo in getargs.c. by Georg Brandl · 18 years ago
  39. b1ed7fa Replace INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 18 years ago
  40. 2a19074 Replace INT_MAX with PY_SSIZE_T_MAX where string length are concerned. by Martin v. Löwis · 18 years ago
  41. 2308915 Replace INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 18 years ago
  42. 635af32 Add PY_SSIZE_T_MIN/MAX to _testcapi. by Georg Brandl · 18 years ago
  43. bb30011 Stop claiming that Py_Finalize releases all memory. Fixes part of #1445210. by Martin v. Löwis · 18 years ago
  44. f15da69 Remove another INT_MAX limitation by Martin v. Löwis · 18 years ago
  45. 8ce358f Replace most INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 18 years ago
  46. 7cbc0f5 C++ compiler changes. casts, rename variables with reserved names. by Anthony Baxter · 18 years ago
  47. 3c6e418 Support NFD of very long strings. by Martin v. Löwis · 18 years ago
  48. 07c6071 test_compile can be really long if we are using -u compiler. by Neal Norwitz · 18 years ago
  49. 412fb67 Change more ints to Py_ssize_t. by Martin v. Löwis · 18 years ago
  50. 80d2e59 Revert 34153: Py_UNICODE should not be signed. by Martin v. Löwis · 18 years ago
  51. 1ad9ec2 whoops. missed one in an auto-generated file. another extern "C" {} for C++ compiler compatibility by Anthony Baxter · 18 years ago
  52. 0cfa58c Remove tests that no longer leak. There is still one leaking generator test by Neal Norwitz · 18 years ago
  53. 5f5a69b Fix {} mismatch spotted by George Yoshida. by Neal Norwitz · 18 years ago
  54. ba8194b tty isn't supported on all boxes. by Tim Peters · 18 years ago
  55. b66871f Fix typography of Martin's name by Andrew M. Kuchling · 18 years ago
  56. ac6bd46 spread the extern "C" { } magic pixie dust around. Python itself builds now by Anthony Baxter · 18 years ago
  57. 28c5f1f Write some ctypes examples by Andrew M. Kuchling · 18 years ago
  58. 288a5be If compiling with g++ don't use -Wstrict-prototpes. by Skip Montanaro · 18 years ago
  59. 57fdcbc reverting r45321: Patch #860326: traceback.format_exception_only() now by Anthony Baxter · 18 years ago
  60. d691f1a casting nastiness to make C++ compiler happy by Anthony Baxter · 18 years ago
  61. 3109d62 Add a cast to make code compile with a C++ compiler. by Anthony Baxter · 18 years ago
  62. 24c274f Patch #860326: traceback.format_exception_only() now prepends the by Georg Brandl · 18 years ago
  63. 6402998 Fixes bug #1117761 by Gregory P. Smith · 18 years ago
  64. 14c6b46 Closes bug #1149413 by Gregory P. Smith · 18 years ago
  65. 55d031e Fix for a bug found by Armin Rigo, plus test. by Thomas Heller · 18 years ago
  66. 8920bf2 Don't set gi_frame to Py_None, use NULL instead, eliminating some insane by Phillip J. Eby · 18 years ago
  67. 5f445bf Mention ASCII as default encoding; update TODO list; use PyCF_ONLY_AST by MvL's suggestion; typographical tidying of MvL's name by Andrew M. Kuchling · 18 years ago
  68. 8872dbf Bump version number; rearrange introduction a bit by Andrew M. Kuchling · 18 years ago
  69. e170937 Ignore the references to the dummy objects used as deleted keys by Armin Rigo · 18 years ago
  70. 314fce9 Patch #1468808: don't complain if Tkinter is already deleted at the time Font.__del__ is run. by Georg Brandl · 18 years ago
  71. 6a67e4e Add PEP 243 section by Andrew M. Kuchling · 18 years ago
  72. f69a24c Update test_sundry. Many modules have now tests, but by Georg Brandl · 18 years ago
  73. f7c6290 Note C API incompatibilities by Andrew M. Kuchling · 18 years ago
  74. 4e86195 Mention access to ASTs by Andrew M. Kuchling · 18 years ago
  75. e29002c Bug #1469163: SimpleXMLRPCServer unconditionally attempted to import fcntl. by Anthony Baxter · 18 years ago
  76. 2db1550 Off-by-one buffer overflow error. by Armin Rigo · 18 years ago
  77. bc96609 Patch #1463288: use a context manager to temporarily switch locales. by Walter Dörwald · 18 years ago
  78. 017749c wrap docstrings so they are less than 80 columns. add spaces after commas. by Neal Norwitz · 18 years ago
  79. a5a80cb gen_throw(): The caller doesn't own PyArg_ParseTuple() by Tim Peters · 18 years ago
  80. ee6d23e Update comments and the skip list, maybe some of these tests don't by Neal Norwitz · 18 years ago
  81. d3a9162 Add another little test to make sure we roundtrip multiple list comp ifs ok. by Neal Norwitz · 18 years ago
  82. 4b194fa Update for new grammar by Neal Norwitz · 18 years ago
  83. 623acf6 put in a reference to PEP 306 in a comment at the top by Anthony Baxter · 18 years ago
  84. 1bd7127 Get rid of some warnings on Mac by Neal Norwitz · 18 years ago
  85. 9730038 avoid C++ name mangling for the _Py.*SizeT functions by Anthony Baxter · 18 years ago
  86. d6495b5 remove forward declarations. No constructors to move for these files. Makes by Anthony Baxter · 18 years ago
  87. aefd8ca Move constructors, add some casts to make C++ compiler happy. Still a problem by Anthony Baxter · 18 years ago
  88. 5576b54 remove forward declarations, move constructor functions. makes code C++ safe. by Anthony Baxter · 18 years ago
  89. 019aec6 Make symtable.c safe for C++ compilers. Changed macros in the same way as by Anthony Baxter · 18 years ago
  90. 2c33fc7 per Jeremy's email, remove the _WITH_CAST versions of macros. g++ by Anthony Baxter · 18 years ago
  91. ced6cdd Part two of the fix for SF bug #1466641: Regenerate graminit.c and add test by Thomas Wouters · 18 years ago
  92. bb64e51 Fix SF bug #1466641: multiple adjacent 'if's in listcomps and genexps, as in by Thomas Wouters · 18 years ago
  93. 9cb28bea Fix int() and long() to repr() their argument when formatting the exception, by Thomas Wouters · 18 years ago
  94. 502348d StreamHandler now checks explicitly for None before using sys.stderr as the stream (see SF bug #1463840). by Vinay Sajip · 18 years ago
  95. cbd6f18 _Py_PrintReferenceAddresses,_Py_PrintReferences: by Tim Peters · 18 years ago
  96. 075e023 Complete the ElementTree section by Andrew M. Kuchling · 18 years ago
  97. 64182fe Some more changes to make code compile under a C++ compiler. by Anthony Baxter · 18 years ago
  98. 7b782b6 more low-hanging fruit to make code compile under a C++ compiler. Not by Anthony Baxter · 18 years ago
  99. 9176fc1 Patch #1464444: Add --with-system-ffi. by Martin v. Löwis · 18 years ago
  100. 2845750 Convert 0 to their respective enum types. Convert by Martin v. Löwis · 18 years ago