1. 9322727 Patch #497126: Always compile dl. by Martin v. Löwis · 23 years ago
  2. 1baeba6 Add fcntl.h constants from glibc 2.2.4. Fixes #496171. by Martin v. Löwis · 23 years ago
  3. bb2501f Due to a cut-and-paste error, the type object exported under the name by Guido van Rossum · 23 years ago
  4. 3cde2cb Add TCP socket options from glibc 2.2.4. Fixes #495680. 2.2.1 bugfix candidate. by Martin v. Löwis · 23 years ago
  5. 52acb49 Merge of the release22 branch changes back into the trunk. by Barry Warsaw · 23 years ago
  6. 500bd03 SF bug #495021: Crash calling os.stat with a trailing backslash by Tim Peters · 23 years ago
  7. 950dce6 save(): Fix for SF bug #494904: Cannot pickle a class with a by Guido van Rossum · 23 years ago
  8. 1fbb577 SF bug #494738: binascii_b2a_base64 overwrites memory. by Tim Peters · 23 years ago
  9. 4befff9 initxxsubtype(): Add a comment to make the magic clearer; I doubt it's by Tim Peters · 23 years ago
  10. a7b9b3c Use PyType_Ready() for initialization of the ob_type field of our by Guido van Rossum · 23 years ago
  11. dd5c05f David Abrahams tried to compile this as a separate DLL under MSVC, and by Tim Peters · 23 years ago
  12. 65760b2 Give xxsubtype a module docstring, so its oddball purpose is discoverable by Tim Peters · 23 years ago
  13. cb85244 Mods by Tony Lownds (patch 490100, slightly massaged by me) to make Tkinter by Jack Jansen · 23 years ago
  14. 82b2307 bug #133283, #477728, #483789, #490573 by Fredrik Lundh · 23 years ago
  15. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago
  16. 7745218 SF patch #489989 (Charles G Waldman) linuxaudiodev.c - fix initialization by Guido van Rossum · 23 years ago
  17. 25059d3 SF patch #489173: Make os.spawnv not block the interpreter, from by Tim Peters · 23 years ago
  18. 2f09812 O_cwrite(): rewrote for clarity, replacing all the (Oobject *)self by Guido van Rossum · 23 years ago
  19. 4e17384 Fix for #489672 (Neil Norwitz): memory leak in test_sre. by Guido van Rossum · 23 years ago
  20. eb4b7ba audioop_ratecv() again: settle for a sloppier upper bound that's less by Tim Peters · 23 years ago
  21. a631f58 Undefine addrinfo.h constants if the system header defined them. Fixes #486099. by Martin v. Löwis · 23 years ago
  22. 2554dd9 Fix [ #489673 ] memory leak in test_symtable: Free the st_future slot. by Jeremy Hylton · 23 years ago
  23. 3caca23 SF bug #488514: -Qnew needs work by Tim Peters · 23 years ago
  24. 3127c28 audioop_ratecv(): I left a potentially unsafe multiply unchecked by Tim Peters · 23 years ago
  25. 8b55b2d Fix memory leak in the parser module: There were two leaks in by Fred Drake · 23 years ago
  26. 1691bd9 SF bug 482574: audioop.ratecv crashes. by Tim Peters · 23 years ago
  27. 62c1e3c Make sure to propogate errors that arise when profiling data cannot be by Fred Drake · 23 years ago
  28. 22a51ef More sprintf -> PyOS_snprintf. by Tim Peters · 23 years ago
  29. c8996f5 posix_execve(), posix_spawnve(), posix_putenv(): by Tim Peters · 23 years ago
  30. 55070f5 Changed logic for finding python home in Mac OS X framework Pythons. by Jack Jansen · 23 years ago
  31. f8a6f24 Check for NULL return value of PyList_New (follow-up to patch #486743). by Martin v. Löwis · 23 years ago
  32. b3cfc1d Patch #481718: Time module doc string changes. by Martin v. Löwis · 23 years ago
  33. 155aad1 Patch #486743: remove bad INCREF, propagate exception in append_objects. by Martin v. Löwis · 23 years ago
  34. 44ddbde Remove INET6 define. Use ENABLE_IPV6 instead. by Martin v. Löwis · 23 years ago
  35. 69b83b1 unicodedata_decomposition(): sprintf -> PyOS_snprintf. by Tim Peters · 23 years ago
  36. c8fe77b Use identity instead of equality when looking for referrers. Fixes #485781. by Martin v. Löwis · 23 years ago
  37. 75cdad5 More sprintf -> PyOS_snprintf. by Tim Peters · 23 years ago
  38. 179c48c Use PyOS_snprintf() instead of sprintf(). by Jeremy Hylton · 23 years ago
  39. 1ceb5fb Repair a botched PyOS_snprintf conversion. by Tim Peters · 23 years ago
  40. 885d457 sprintf -> PyOS_snprintf in some "obviously safe" cases. by Tim Peters · 23 years ago
  41. d4c0a9c Fixes for possible buffer overflows in sprintf() usages. by Marc-André Lemburg · 23 years ago
  42. 3072ecd Fix docstring typo by Andrew M. Kuchling · 23 years ago
  43. e75f0e4 Correct typo. Fixes #484611. by Martin v. Löwis · 23 years ago
  44. 560da62 Rename get_referents to get_referrers. Fixes #483815. by Martin v. Löwis · 23 years ago
  45. fba64e1 Test for negative buffer sizes. Fixes #482871. by Martin v. Löwis · 23 years ago
  46. 8188e79 assert.h was not always included by Python.h; make sure we import it for by Fred Drake · 23 years ago
  47. 9b481ff A change to sync with pickle.py: by Barry Warsaw · 23 years ago
  48. 5ebfd36 CVS patch #477161: New "access" keyword for mmap, from Jay T Miller. by Tim Peters · 23 years ago
  49. 88d2131 new_code(): The last patch to this left behind an unreferenced local; by Tim Peters · 23 years ago
  50. bf5ca65 load_string(): Force use of unsigned compare in a context that was by Tim Peters · 23 years ago
  51. 43f2dc6 Limit string size on one-character-strings. Fixes #480384. by Martin v. Löwis · 23 years ago
  52. 00ff10c Patch in bug report #477700: Fix memory leaks in gdbm & curses. by Martin v. Löwis · 23 years ago
  53. 42ba08f Patch #473265: UpdatePairedHandlers nonsensical. by Martin v. Löwis · 23 years ago
  54. 1d7c55f Merge 1.42 from PyXML: Flag errors resulting from argument conversion problems. by Martin v. Löwis · 23 years ago
  55. 9f64caa Use PyObject_CheckReadBuffer(). by Jeremy Hylton · 23 years ago
  56. 03459a5 Fix memory leak. This is part of SF patch #478006. by Fred Drake · 23 years ago
  57. f12a68c Fix memory leak. This is (very!) similar to part of SF patch #478006. by Fred Drake · 23 years ago
  58. 03f96bd Fixes to compile cPickle.c & socketmodule.c on cygwin and possibly by Michael W. Hudson · 23 years ago
  59. f0b11d2 Fix memory leaks detecting in bug report #478003. by Martin v. Löwis · 23 years ago
  60. 10f9c07 Remove obsolete e-mail address by Andrew M. Kuchling · 23 years ago
  61. 603c683 SF patch 473749 compile under OS/2 VA C++, from Michael Muller. by Tim Peters · 23 years ago
  62. 0bd292f Correct argument parsing for alp_getstatus, which is METH_VARARGS. by Martin v. Löwis · 23 years ago
  63. dedbe25 Patch #474169: Move fdopen calls out of critical section. by Martin v. Löwis · 23 years ago
  64. 06b1d21 Correct getnameinfo refcounting and tuple parsing. Fixes #476648. by Martin v. Löwis · 23 years ago
  65. 52a42e9 Simplify initmd5() to use PyModule_AddIntConstant(). by Fred Drake · 23 years ago
  66. 8b14ac9 Clean up a Tab inconsistency. by Fred Drake · 23 years ago
  67. 75fec2c [Patch #476612] Add attributes from PEP247 to the md5 and sha modules by Andrew M. Kuchling · 23 years ago
  68. db86561 has_finalizer(): simplified "if (complicated_bool) 1 else 0" to by Tim Peters · 23 years ago
  69. a765c12 Add has_finalizer predictate function. Use it when deciding which by Neil Schemenauer · 23 years ago
  70. 8cc705e SF bug #477059 (my own): __del__ on new classes vs. GC. by Guido van Rossum · 23 years ago
  71. e8c40cb Make the gc.collect() function respect the collection lock. This fixes by Neil Schemenauer · 23 years ago
  72. 355bc0c Change the limit on the input size for b2a_base64 to what will fit in by Guido van Rossum · 23 years ago
  73. c32410a PySocketSock_connect_ex(): On Windows, return the correct Windows exit by Tim Peters · 23 years ago
  74. 4c2e1af Make the low-level log-reader object export a dictionary mapping keys by Fred Drake · 23 years ago
  75. ca6dfa5 Oops. In the tp_name field, the name should be "_socket.socket", not by Guido van Rossum · 23 years ago
  76. 384ca9c Made SocketType and socket the same thing: a subclassable type whose by Guido van Rossum · 23 years ago
  77. 9f7a539 Add sendall() method, which loops until all data is written or an by Guido van Rossum · 23 years ago
  78. a0dfc85 Fix SF bug #474538: Memory (reference) leak in poller.register (Dave Brueck) by Guido van Rossum · 23 years ago
  79. 7c4b5fa After discussion with itojun, it was clarified that Tru64 is in error, by Martin v. Löwis · 23 years ago
  80. 703ce81 (experimental) "finditer" method/function. this works pretty much by Fredrik Lundh · 23 years ago
  81. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 23 years ago
  82. b8fc972 Fix typo. Thanks to Jack Jansen for spotting it. by Martin v. Löwis · 23 years ago
  83. eb9b103 Check for HP/UX curses problems. Define _XOPEN_SOURCE_EXTENDED and by Martin v. Löwis · 23 years ago
  84. 861a65b Include netdb.h to detect getaddrinfo. Work around problem with getaddrinfo by Martin v. Löwis · 23 years ago
  85. 72af01a Added missing cast. by Jack Jansen · 23 years ago
  86. 963659a Got this to work in MacPython. The code is #ifdef macintosh style (to match the existing #ifdef MS_WINDOWS), but eventually ifdeffing on configure features is probably better. by Jack Jansen · 23 years ago
  87. 0d429e8 Convert the ref() and proxy() implementations to use the new by Fred Drake · 23 years ago
  88. 6de22ef another major speedup: let sre.sub/subn check for escapes in the by Fredrik Lundh · 23 years ago
  89. f864aa8 sre.split should return the last segment, even if empty (sorry, barry) by Fredrik Lundh · 23 years ago
  90. 2677512 Adding missing "static" declarations (found by "make smelly"). by Neil Schemenauer · 23 years ago
  91. dac5849 fixed character set description in docstring (SRE uses Python by Fredrik Lundh · 23 years ago
  92. 1296a8d sre.Scanner fixes (from Greg Chapman). also added a Scanner sanity by Fredrik Lundh · 23 years ago
  93. bec95b9 rewrote the pattern.sub and pattern.subn methods in C by Fredrik Lundh · 23 years ago
  94. 5b68ce3 Change clear_handlers argument to indicate whether this is an initialization. by Martin v. Löwis · 23 years ago
  95. 971e78b rewrote the pattern.split method in C by Fredrik Lundh · 23 years ago
  96. 16e65a0 Add two forgotten 'break' statements by Andrew M. Kuchling · 23 years ago
  97. cad8fa1 (Hopefully) fix SF bug #472675: CVS socketmodule now doesn't compile by Guido van Rossum · 23 years ago
  98. c524d95 SF patch #460805 by Chris Gonnerman: Support for unsetenv() by Guido van Rossum · 23 years ago
  99. b6c1d52 SF patch #443759: Add Interface to readline's add_history by Guido van Rossum · 23 years ago
  100. 4fe3c27 Expose O_LARGEFILE, O_DIRECT, O_DIRECTORY, and O_NOFOLLOW. by Martin v. Löwis · 23 years ago