1. e170937 Ignore the references to the dummy objects used as deleted keys by Armin Rigo · 18 years ago
  2. 314fce9 Patch #1468808: don't complain if Tkinter is already deleted at the time Font.__del__ is run. by Georg Brandl · 18 years ago
  3. 6a67e4e Add PEP 243 section by Andrew M. Kuchling · 18 years ago
  4. f69a24c Update test_sundry. Many modules have now tests, but by Georg Brandl · 18 years ago
  5. f7c6290 Note C API incompatibilities by Andrew M. Kuchling · 18 years ago
  6. 4e86195 Mention access to ASTs by Andrew M. Kuchling · 18 years ago
  7. e29002c Bug #1469163: SimpleXMLRPCServer unconditionally attempted to import fcntl. by Anthony Baxter · 18 years ago
  8. 2db1550 Off-by-one buffer overflow error. by Armin Rigo · 18 years ago
  9. bc96609 Patch #1463288: use a context manager to temporarily switch locales. by Walter Dörwald · 18 years ago
  10. 017749c wrap docstrings so they are less than 80 columns. add spaces after commas. by Neal Norwitz · 18 years ago
  11. a5a80cb gen_throw(): The caller doesn't own PyArg_ParseTuple() by Tim Peters · 18 years ago
  12. ee6d23e Update comments and the skip list, maybe some of these tests don't by Neal Norwitz · 18 years ago
  13. d3a9162 Add another little test to make sure we roundtrip multiple list comp ifs ok. by Neal Norwitz · 18 years ago
  14. 4b194fa Update for new grammar by Neal Norwitz · 18 years ago
  15. 623acf6 put in a reference to PEP 306 in a comment at the top by Anthony Baxter · 18 years ago
  16. 1bd7127 Get rid of some warnings on Mac by Neal Norwitz · 18 years ago
  17. 9730038 avoid C++ name mangling for the _Py.*SizeT functions by Anthony Baxter · 18 years ago
  18. d6495b5 remove forward declarations. No constructors to move for these files. Makes by Anthony Baxter · 18 years ago
  19. aefd8ca Move constructors, add some casts to make C++ compiler happy. Still a problem by Anthony Baxter · 18 years ago
  20. 5576b54 remove forward declarations, move constructor functions. makes code C++ safe. by Anthony Baxter · 18 years ago
  21. 019aec6 Make symtable.c safe for C++ compilers. Changed macros in the same way as by Anthony Baxter · 18 years ago
  22. 2c33fc7 per Jeremy's email, remove the _WITH_CAST versions of macros. g++ by Anthony Baxter · 18 years ago
  23. ced6cdd Part two of the fix for SF bug #1466641: Regenerate graminit.c and add test by Thomas Wouters · 18 years ago
  24. bb64e51 Fix SF bug #1466641: multiple adjacent 'if's in listcomps and genexps, as in by Thomas Wouters · 18 years ago
  25. 9cb28bea Fix int() and long() to repr() their argument when formatting the exception, by Thomas Wouters · 18 years ago
  26. 502348d StreamHandler now checks explicitly for None before using sys.stderr as the stream (see SF bug #1463840). by Vinay Sajip · 18 years ago
  27. cbd6f18 _Py_PrintReferenceAddresses,_Py_PrintReferences: by Tim Peters · 18 years ago
  28. 075e023 Complete the ElementTree section by Andrew M. Kuchling · 18 years ago
  29. 64182fe Some more changes to make code compile under a C++ compiler. by Anthony Baxter · 18 years ago
  30. 7b782b6 more low-hanging fruit to make code compile under a C++ compiler. Not by Anthony Baxter · 18 years ago
  31. 9176fc1 Patch #1464444: Add --with-system-ffi. by Martin v. Löwis · 18 years ago
  32. 2845750 Convert 0 to their respective enum types. Convert by Martin v. Löwis · 18 years ago
  33. ee36d65 Correct casts to char*. by Martin v. Löwis · 18 years ago
  34. 72d2067 Remove "static forward" declaration. Move constructors after the type objects. by Martin v. Löwis · 18 years ago
  35. 9eec489 Regenerate. by Martin v. Löwis · 18 years ago
  36. 08062d6 As discussed on python-dev, really fix the PyMem_*/PyObject_* memory API by Neal Norwitz · 18 years ago
  37. 01b8101 Make _kind types global for C++ compilation. by Martin v. Löwis · 18 years ago
  38. 9b26122 Get compiling again by Neal Norwitz · 18 years ago
  39. a863d33 low-hanging fruit in Python/ - g++ still hates all the enum_kind declarations by Anthony Baxter · 18 years ago
  40. a628621 More low-hanging fruit. Still need to re-arrange some code (or find a better by Anthony Baxter · 18 years ago
  41. 1cf3964 C++ already defines a perfectly good 'bool'. Use that. by Anthony Baxter · 18 years ago
  42. 0c46985 Adjust whitespace. by Neal Norwitz · 18 years ago
  43. b94a368 Add whitespace after comma by Neal Norwitz · 18 years ago
  44. 44fe0e4 Correct test whether wchar_t is unsigned. Fixed crash in #1454485. by Martin v. Löwis · 18 years ago
  45. 05e89b8 Clear errno before calling opendir() and readdir(). by Georg Brandl · 18 years ago
  46. 377be11 More C++-compliance. Note especially listobject.c - to get C++ to accept the by Anthony Baxter · 18 years ago
  47. bbfe4fa Bug #1467952: os.listdir() now correctly raises an error if readdir() by Georg Brandl · 18 years ago
  48. ce27a06 Typo fix. by Georg Brandl · 18 years ago
  49. 1149002 Fix the code in Parser/ to also compile with C++. This was mostly casts for by Anthony Baxter · 18 years ago
  50. 319c47f Try to repair what may be the last new test failure on the by Tim Peters · 18 years ago
  51. 171b868 subclasspropagation(): Squash two more bogus hash(x) == id(x) by Tim Peters · 18 years ago
  52. 527f652 Typo repair. by Tim Peters · 18 years ago
  53. 413c922 Whitespace normalization. by Tim Peters · 18 years ago
  54. 3a5e8b1 More words on patch #837242, since 4 or 5 tests started by Tim Peters · 18 years ago
  55. 51dd7d9 Add notes to NEWS for other work today. by Phillip J. Eby · 18 years ago
  56. 85b362f specials(): squash another incorrect hash(x) == id(x) by Tim Peters · 18 years ago
  57. 678b8ec Forgot to mark up a PEP reference by Phillip J. Eby · 18 years ago
  58. 4703211 Updated the warnings, linecache, inspect, traceback, site, and doctest modules by Phillip J. Eby · 18 years ago
  59. 7731dfd Huh. This belonged with the last checkin -- no idea why svn didn't commit it. by Tim Peters · 18 years ago
  60. 6902b44 Try to repair more new buildbot failures in "x86 OpenBSD trunk", due by Tim Peters · 18 years ago
  61. 16ed521 Write part of ElementTree section by Andrew M. Kuchling · 18 years ago
  62. d58baf8 Give SQLite examples by Andrew M. Kuchling · 18 years ago
  63. 9bdc85f Fix one of the tests that fails on the "x86 OpenBSD trunk" buildbot, by Tim Peters · 18 years ago
  64. 8845935 Fix one of the tests that fails on the "x86 OpenBSD trunk" buildbot, due by Tim Peters · 18 years ago
  65. 3daf304 Whitespace normalization. by Tim Peters · 18 years ago
  66. 0bc2ab9 Patch #837242: id() for large ptr should return a long. by Martin v. Löwis · 18 years ago
  67. a19dc0b DecimalContextTestCase: this permanently changed the by Tim Peters · 18 years ago
  68. bd0c10f test_contextlib wasn't actually being run by regrtest.py. Or more precisely, by Phillip J. Eby · 18 years ago
  69. 93149d9 Minor clarity edit to contextlib per Guido's request. by Phillip J. Eby · 18 years ago
  70. 2ba9661 SF Patch #1463867: Improved generator finalization to allow generators by Phillip J. Eby · 18 years ago
  71. 17de8ff Patch #1467770: Add Popen objects to _active only in __del__. by Martin v. Löwis · 18 years ago
  72. 3fa6c09 Patch #1441452: Add more AST nodes. by Martin v. Löwis · 18 years ago
  73. 10acfd0 Patch #1429775: Link Python modules to libpython on linux if by Martin v. Löwis · 18 years ago
  74. b04dee9 Patch #1462222: Fix Tix.Grid. Closes #1036406. by Martin v. Löwis · 18 years ago
  75. 84a98e0 Fix warning about ptsname not being a prototype on Solaris. Is this prototype even necessary anymore? by Neal Norwitz · 18 years ago
  76. 14bc4e4 Use PyObject_* allocator since FutureFeatures is small by Neal Norwitz · 18 years ago
  77. 2c4e4f9 SF patch #1467512, fix double free with triple quoted string in standard build. by Neal Norwitz · 18 years ago
  78. 65c05b2 Get rid of warnings about using chars as subscripts by Neal Norwitz · 18 years ago
  79. b183a25 Fix some warnings on HP-UX when using cc/aCC by Neal Norwitz · 18 years ago
  80. 6974a51 I wonder if we can be too graceful? One oughta be enough. :-) by Neal Norwitz · 18 years ago
  81. 8220174 Python on OS X 10.3 and above now uses dlopen() (via dynload_shlib.c) by Anthony Baxter · 18 years ago
  82. a50794b Patch #1466993: remove wrong comment in socket.py by Georg Brandl · 18 years ago
  83. ce4a9c9 Fix tests so they pass in -R mode by Neal Norwitz · 18 years ago
  84. aa34b6c Get test_optparse to pass in -R mode by stop changing state (COLUMNS env var) by Neal Norwitz · 18 years ago
  85. 349c0ed Convert test_compare to use unittest. Hopefully we can find out by Neal Norwitz · 18 years ago
  86. 4c842a4 Fix problem (not checking return result) reported by Coverity by Neal Norwitz · 18 years ago
  87. c5d0dbd Fix a couple of strings that were no-ops. urllib.open_file was a docstring by Neal Norwitz · 18 years ago
  88. a31bf18 glob('anything*/') would fail because isdir is in os.path, not os. by Neal Norwitz · 18 years ago
  89. e0bb597 test_timeout(): This test was added during Bug Day, but disabled by Tim Peters · 18 years ago
  90. 2f36caf Define WIN32, to get proper struct alignment in WinSock2.h. by Martin v. Löwis · 18 years ago
  91. 7f5b6f4 Fix bsddb.db.DBError derived exceptions so they can be unpickled. by Gregory P. Smith · 18 years ago
  92. 795246c Don't try to build ctypes when configuration of libffi fails. by Thomas Heller · 18 years ago
  93. eba43c1 Configure Modules/_ctypes/libffi just before building the _ctypes extension. by Thomas Heller · 18 years ago
  94. 6e3a66d Fix a few XXX markers by Andrew M. Kuchling · 18 years ago
  95. 9fbc44c Adjust compileall -x option to Makefile.pre.in. Fixes #1465093. by Martin v. Löwis · 18 years ago
  96. ad7c44c Regenerate. by Martin v. Löwis · 18 years ago
  97. 7846f4d missing 'self' from TextCalendar.prweek. by Anthony Baxter · 18 years ago
  98. b4e4165 minor error in uudecode main error handling by Anthony Baxter · 18 years ago
  99. 5fe60e7 Patch #1462080: Conditionalize some NETLINK defines. by Martin v. Löwis · 18 years ago
  100. 7d6b895 Whitespace normalization. by Tim Peters · 18 years ago