1. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 18 years ago
  2. 447d095 - Whitespace normalization by Thomas Wouters · 18 years ago
  3. 112d4ec Fix typo. by Thomas Heller · 18 years ago
  4. eb6f183 Fix for FreeBSD. Fixes http://python.org/sf/1470353. Looks like a libffi bug. by Thomas Heller · 18 years ago
  5. ab0e284 Zap ZAP. by Martin v. Löwis · 18 years ago
  6. 48bbaf2 Patch #1470875: Building Python with MS Free Compiler. by Martin v. Löwis · 18 years ago
  7. 73536e0 Remove partial change (don't edit, commit and think at the same time :P) by Thomas Wouters · 18 years ago
  8. 2742c5e Re-instate backward compatibility by defining Py_CLEAR if it isn't available. by Thomas Wouters · 18 years ago
  9. edf17d8 Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for by Thomas Wouters · 18 years ago
  10. ed8f783 Clear dummy and emptyfrozenset, so that we don't have by Martin v. Löwis · 18 years ago
  11. 841747c Fix sys.getobjects(0): we get a reference to the by Martin v. Löwis · 18 years ago
  12. c597d1b Unlink the structseq type from the global list of by Martin v. Löwis · 18 years ago
  13. 4b501e6 Patch #1191700: Adjust column alignment in bdb breakpoint lists. by Martin v. Löwis · 18 years ago
  14. 7e75f1a Patch #1191065: Fix preprocessor problems on systems where recvfrom is a macro. by Martin v. Löwis · 18 years ago
  15. c90b17e Patch #1161914: Add python-config. by Martin v. Löwis · 18 years ago
  16. adcd25e frame_clear(): Explain why it's important to make the frame by Tim Peters · 18 years ago
  17. de2acf6 frame_traverse(): Use the standard Py_VISIT macro. by Tim Peters · 18 years ago
  18. a13131c Trimmed trailing whitespace. by Tim Peters · 18 years ago
  19. 9d2ced8 There were no comments explaining what Py_CLEAR() did or by Tim Peters · 18 years ago
  20. 7f09811 Changed comments to make sense now that the LazyList-based by Tim Peters · 18 years ago
  21. 8ebb28d Fix SF#1470508: crash in generator cycle finalization. There were two by Phillip J. Eby · 18 years ago
  22. 3cfea2d Coverity-found bug: datetime_strptime() failed to check for NULL return from by Thomas Wouters · 18 years ago
  23. 29b3d08 Add an item; better crediting; fix error in SQL example; minor edits by Andrew M. Kuchling · 18 years ago
  24. 8ed2914 Typo fix by Andrew M. Kuchling · 18 years ago
  25. c187f33 Whitespace normalization. by Tim Peters · 18 years ago
  26. 78a0be6 Add a BufferedIncrementalEncoder class that can be used for implementing by Walter Dörwald · 18 years ago
  27. a40cf31 Make error message less misleading for u"a..b".encode("idna"). by Walter Dörwald · 18 years ago
  28. 82972e7 Patch #702933: Undocument PyObject_NEW, PyObject_NEW_VAR, and PyObject_DEL. by Martin v. Löwis · 18 years ago
  29. b17f12b Fix wrong attribute name. by Walter Dörwald · 18 years ago
  30. 6493699 Make raise statements PEP 8 compatible. by Walter Dörwald · 18 years ago
  31. f7afe95 Patch #1045620: Prepend Modules/ before Setup in stdout. by Martin v. Löwis · 18 years ago
  32. f24de1e Patch #1470300: Port _hotshot to QNX4.25 port. by Martin v. Löwis · 18 years ago
  33. 7580149 Patch #1355883: Build Python-ast.c and Python-ast.h by Martin v. Löwis · 18 years ago
  34. 969ef75 Show case: reference cycles involving only the ob_type field are rather by Armin Rigo · 18 years ago
  35. db4018f Typo fix by Andrew M. Kuchling · 18 years ago
  36. 0f48d98 Patch #1324762: Change --with-cxx to --with-cxx-main. by Martin v. Löwis · 18 years ago
  37. 15be5ec Call encode()/decode() with final==True as the last call in the by Walter Dörwald · 18 years ago
  38. 121c98c Typo fixes by Andrew M. Kuchling · 18 years ago
  39. c709584 Add more items by Andrew M. Kuchling · 18 years ago
  40. 984bdd7 Typo fix by Andrew M. Kuchling · 18 years ago
  41. 75ba244 Add an item and a reminder by Andrew M. Kuchling · 18 years ago
  42. 5cb6936 Make Py_BuildValue, PyObject_CallFunction and by Martin v. Löwis · 18 years ago
  43. 38a76a1 Copy note from leakers README here too. We want to keep all test cases. by Neal Norwitz · 18 years ago
  44. 6212922 Restore test tee with some modifications. by Neal Norwitz · 18 years ago
  45. cde8750 Move the old test_generator_cycle.py which leaked but was removed into the test by Neal Norwitz · 18 years ago
  46. 03f3be5 Update notes to address cyclic garbage and what should happen when a test is fixed. by Neal Norwitz · 18 years ago
  47. 6154616 SF Bug #1454485, array.array('u') could crash the interpreter when by Neal Norwitz · 18 years ago
  48. 384178c Added George Yoshida. by Tim Peters · 18 years ago
  49. 8c0dc84 ALIGNMENT_SHIFT is not used by Neal Norwitz · 18 years ago
  50. 7db4f24 When using -R, lots of "*** DocTestRunner.merge:" nuisance messages by Tim Peters · 18 years ago
  51. 8e6480c Whitespace normalization. by Tim Peters · 18 years ago
  52. 3adc4aa raise the minimum supported BerkeleyDB version to 3.3 and add notes to by Gregory P. Smith · 18 years ago
  53. da69041 Force 8-alignment of memory blocks, as needed on by Martin v. Löwis · 18 years ago
  54. f33dea2 Fix type errors. by Martin v. Löwis · 18 years ago
  55. 5d4cf5e Typo fix by Andrew M. Kuchling · 18 years ago
  56. 3b4fb04 [Bug #1464571] Mention that generator's .gi_frame can now be None by Andrew M. Kuchling · 18 years ago
  57. 6fc6976 Add some items by Andrew M. Kuchling · 18 years ago
  58. 0cc56e5 Introduce asdl_int_seq, to hold cmpop_ty. by Martin v. Löwis · 18 years ago
  59. 0f1955d Include more detail on Coverity results and add a link; minor edits by Andrew M. Kuchling · 18 years ago
  60. 61434b6 Describe sys.subversion, Py_GetBuildInfo() Add metadata example by Andrew M. Kuchling · 18 years ago
  61. aa571c9 Add missing word by Andrew M. Kuchling · 18 years ago
  62. 869bacd revert - breaks build of Python/ast.c w/ gcc by Skip Montanaro · 18 years ago
  63. b940671 Use union to discriminate pointer types from enum/int types. by Skip Montanaro · 18 years ago
  64. 83687c9 Change more occurrences of maxsplit to Py_ssize_t. by Martin v. Löwis · 18 years ago
  65. 9c83076 Change maxsplit types to Py_ssize_t. by Martin v. Löwis · 18 years ago
  66. 2f3f136 Allocate the 0x1D1A0000 base adress for the _ctypes extension module. by Thomas Heller · 18 years ago
  67. 9d54837 Add two entries about how to actually clear a list. by Georg Brandl · 18 years ago
  68. 7f573f7 Add a test for Py_ssize_t. Correct typo in getargs.c. by Georg Brandl · 18 years ago
  69. b1ed7fa Replace INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 18 years ago
  70. 2a19074 Replace INT_MAX with PY_SSIZE_T_MAX where string length are concerned. by Martin v. Löwis · 18 years ago
  71. 2308915 Replace INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 18 years ago
  72. 635af32 Add PY_SSIZE_T_MIN/MAX to _testcapi. by Georg Brandl · 18 years ago
  73. bb30011 Stop claiming that Py_Finalize releases all memory. Fixes part of #1445210. by Martin v. Löwis · 18 years ago
  74. f15da69 Remove another INT_MAX limitation by Martin v. Löwis · 18 years ago
  75. 8ce358f Replace most INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 18 years ago
  76. 7cbc0f5 C++ compiler changes. casts, rename variables with reserved names. by Anthony Baxter · 18 years ago
  77. 3c6e418 Support NFD of very long strings. by Martin v. Löwis · 18 years ago
  78. 07c6071 test_compile can be really long if we are using -u compiler. by Neal Norwitz · 18 years ago
  79. 412fb67 Change more ints to Py_ssize_t. by Martin v. Löwis · 18 years ago
  80. 80d2e59 Revert 34153: Py_UNICODE should not be signed. by Martin v. Löwis · 18 years ago
  81. 1ad9ec2 whoops. missed one in an auto-generated file. another extern "C" {} for C++ compiler compatibility by Anthony Baxter · 18 years ago
  82. 0cfa58c Remove tests that no longer leak. There is still one leaking generator test by Neal Norwitz · 18 years ago
  83. 5f5a69b Fix {} mismatch spotted by George Yoshida. by Neal Norwitz · 18 years ago
  84. ba8194b tty isn't supported on all boxes. by Tim Peters · 18 years ago
  85. b66871f Fix typography of Martin's name by Andrew M. Kuchling · 18 years ago
  86. ac6bd46 spread the extern "C" { } magic pixie dust around. Python itself builds now by Anthony Baxter · 18 years ago
  87. 28c5f1f Write some ctypes examples by Andrew M. Kuchling · 18 years ago
  88. 288a5be If compiling with g++ don't use -Wstrict-prototpes. by Skip Montanaro · 18 years ago
  89. 57fdcbc reverting r45321: Patch #860326: traceback.format_exception_only() now by Anthony Baxter · 18 years ago
  90. d691f1a casting nastiness to make C++ compiler happy by Anthony Baxter · 18 years ago
  91. 3109d62 Add a cast to make code compile with a C++ compiler. by Anthony Baxter · 18 years ago
  92. 24c274f Patch #860326: traceback.format_exception_only() now prepends the by Georg Brandl · 18 years ago
  93. 6402998 Fixes bug #1117761 by Gregory P. Smith · 18 years ago
  94. 14c6b46 Closes bug #1149413 by Gregory P. Smith · 18 years ago
  95. 55d031e Fix for a bug found by Armin Rigo, plus test. by Thomas Heller · 18 years ago
  96. 8920bf2 Don't set gi_frame to Py_None, use NULL instead, eliminating some insane by Phillip J. Eby · 18 years ago
  97. 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
  98. 8872dbf Bump version number; rearrange introduction a bit by Andrew M. Kuchling · 18 years ago
  99. e170937 Ignore the references to the dummy objects used as deleted keys by Armin Rigo · 18 years ago
  100. 314fce9 Patch #1468808: don't complain if Tkinter is already deleted at the time Font.__del__ is run. by Georg Brandl · 18 years ago