1. f8a6f24 Check for NULL return value of PyList_New (follow-up to patch #486743). by Martin v. Löwis · 23 years ago
  2. b3cfc1d Patch #481718: Time module doc string changes. by Martin v. Löwis · 23 years ago
  3. 155aad1 Patch #486743: remove bad INCREF, propagate exception in append_objects. by Martin v. Löwis · 23 years ago
  4. 44ddbde Remove INET6 define. Use ENABLE_IPV6 instead. by Martin v. Löwis · 23 years ago
  5. 69b83b1 unicodedata_decomposition(): sprintf -> PyOS_snprintf. by Tim Peters · 23 years ago
  6. c8fe77b Use identity instead of equality when looking for referrers. Fixes #485781. by Martin v. Löwis · 23 years ago
  7. 75cdad5 More sprintf -> PyOS_snprintf. by Tim Peters · 23 years ago
  8. 179c48c Use PyOS_snprintf() instead of sprintf(). by Jeremy Hylton · 23 years ago
  9. 1ceb5fb Repair a botched PyOS_snprintf conversion. by Tim Peters · 23 years ago
  10. 885d457 sprintf -> PyOS_snprintf in some "obviously safe" cases. by Tim Peters · 23 years ago
  11. d4c0a9c Fixes for possible buffer overflows in sprintf() usages. by Marc-André Lemburg · 23 years ago
  12. 3072ecd Fix docstring typo by Andrew M. Kuchling · 23 years ago
  13. e75f0e4 Correct typo. Fixes #484611. by Martin v. Löwis · 23 years ago
  14. 560da62 Rename get_referents to get_referrers. Fixes #483815. by Martin v. Löwis · 23 years ago
  15. fba64e1 Test for negative buffer sizes. Fixes #482871. by Martin v. Löwis · 23 years ago
  16. 8188e79 assert.h was not always included by Python.h; make sure we import it for by Fred Drake · 23 years ago
  17. 9b481ff A change to sync with pickle.py: by Barry Warsaw · 23 years ago
  18. 5ebfd36 CVS patch #477161: New "access" keyword for mmap, from Jay T Miller. by Tim Peters · 23 years ago
  19. 88d2131 new_code(): The last patch to this left behind an unreferenced local; by Tim Peters · 23 years ago
  20. bf5ca65 load_string(): Force use of unsigned compare in a context that was by Tim Peters · 23 years ago
  21. 43f2dc6 Limit string size on one-character-strings. Fixes #480384. by Martin v. Löwis · 23 years ago
  22. 00ff10c Patch in bug report #477700: Fix memory leaks in gdbm & curses. by Martin v. Löwis · 23 years ago
  23. 42ba08f Patch #473265: UpdatePairedHandlers nonsensical. by Martin v. Löwis · 23 years ago
  24. 1d7c55f Merge 1.42 from PyXML: Flag errors resulting from argument conversion problems. by Martin v. Löwis · 23 years ago
  25. 9f64caa Use PyObject_CheckReadBuffer(). by Jeremy Hylton · 23 years ago
  26. 03459a5 Fix memory leak. This is part of SF patch #478006. by Fred Drake · 23 years ago
  27. f12a68c Fix memory leak. This is (very!) similar to part of SF patch #478006. by Fred Drake · 23 years ago
  28. 03f96bd Fixes to compile cPickle.c & socketmodule.c on cygwin and possibly by Michael W. Hudson · 23 years ago
  29. f0b11d2 Fix memory leaks detecting in bug report #478003. by Martin v. Löwis · 23 years ago
  30. 10f9c07 Remove obsolete e-mail address by Andrew M. Kuchling · 23 years ago
  31. 603c683 SF patch 473749 compile under OS/2 VA C++, from Michael Muller. by Tim Peters · 23 years ago
  32. 0bd292f Correct argument parsing for alp_getstatus, which is METH_VARARGS. by Martin v. Löwis · 23 years ago
  33. dedbe25 Patch #474169: Move fdopen calls out of critical section. by Martin v. Löwis · 23 years ago
  34. 06b1d21 Correct getnameinfo refcounting and tuple parsing. Fixes #476648. by Martin v. Löwis · 23 years ago
  35. 52a42e9 Simplify initmd5() to use PyModule_AddIntConstant(). by Fred Drake · 23 years ago
  36. 8b14ac9 Clean up a Tab inconsistency. by Fred Drake · 23 years ago
  37. 75fec2c [Patch #476612] Add attributes from PEP247 to the md5 and sha modules by Andrew M. Kuchling · 23 years ago
  38. db86561 has_finalizer(): simplified "if (complicated_bool) 1 else 0" to by Tim Peters · 23 years ago
  39. a765c12 Add has_finalizer predictate function. Use it when deciding which by Neil Schemenauer · 23 years ago
  40. 8cc705e SF bug #477059 (my own): __del__ on new classes vs. GC. by Guido van Rossum · 23 years ago
  41. e8c40cb Make the gc.collect() function respect the collection lock. This fixes by Neil Schemenauer · 23 years ago
  42. 355bc0c Change the limit on the input size for b2a_base64 to what will fit in by Guido van Rossum · 23 years ago
  43. c32410a PySocketSock_connect_ex(): On Windows, return the correct Windows exit by Tim Peters · 23 years ago
  44. 4c2e1af Make the low-level log-reader object export a dictionary mapping keys by Fred Drake · 23 years ago
  45. ca6dfa5 Oops. In the tp_name field, the name should be "_socket.socket", not by Guido van Rossum · 23 years ago
  46. 384ca9c Made SocketType and socket the same thing: a subclassable type whose by Guido van Rossum · 23 years ago
  47. 9f7a539 Add sendall() method, which loops until all data is written or an by Guido van Rossum · 23 years ago
  48. a0dfc85 Fix SF bug #474538: Memory (reference) leak in poller.register (Dave Brueck) by Guido van Rossum · 23 years ago
  49. 7c4b5fa After discussion with itojun, it was clarified that Tru64 is in error, by Martin v. Löwis · 23 years ago
  50. 703ce81 (experimental) "finditer" method/function. this works pretty much by Fredrik Lundh · 23 years ago
  51. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 23 years ago
  52. b8fc972 Fix typo. Thanks to Jack Jansen for spotting it. by Martin v. Löwis · 23 years ago
  53. eb9b103 Check for HP/UX curses problems. Define _XOPEN_SOURCE_EXTENDED and by Martin v. Löwis · 23 years ago
  54. 861a65b Include netdb.h to detect getaddrinfo. Work around problem with getaddrinfo by Martin v. Löwis · 23 years ago
  55. 72af01a Added missing cast. by Jack Jansen · 23 years ago
  56. 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
  57. 0d429e8 Convert the ref() and proxy() implementations to use the new by Fred Drake · 23 years ago
  58. 6de22ef another major speedup: let sre.sub/subn check for escapes in the by Fredrik Lundh · 23 years ago
  59. f864aa8 sre.split should return the last segment, even if empty (sorry, barry) by Fredrik Lundh · 23 years ago
  60. 2677512 Adding missing "static" declarations (found by "make smelly"). by Neil Schemenauer · 23 years ago
  61. dac5849 fixed character set description in docstring (SRE uses Python by Fredrik Lundh · 23 years ago
  62. 1296a8d sre.Scanner fixes (from Greg Chapman). also added a Scanner sanity by Fredrik Lundh · 23 years ago
  63. bec95b9 rewrote the pattern.sub and pattern.subn methods in C by Fredrik Lundh · 23 years ago
  64. 5b68ce3 Change clear_handlers argument to indicate whether this is an initialization. by Martin v. Löwis · 23 years ago
  65. 971e78b rewrote the pattern.split method in C by Fredrik Lundh · 23 years ago
  66. 16e65a0 Add two forgotten 'break' statements by Andrew M. Kuchling · 23 years ago
  67. cad8fa1 (Hopefully) fix SF bug #472675: CVS socketmodule now doesn't compile by Guido van Rossum · 23 years ago
  68. c524d95 SF patch #460805 by Chris Gonnerman: Support for unsetenv() by Guido van Rossum · 23 years ago
  69. b6c1d52 SF patch #443759: Add Interface to readline's add_history by Guido van Rossum · 23 years ago
  70. 4fe3c27 Expose O_LARGEFILE, O_DIRECT, O_DIRECTORY, and O_NOFOLLOW. by Martin v. Löwis · 23 years ago
  71. a4dc73e Don't leave bare newlines in long strings -- VC doesn't like that. by Guido van Rossum · 23 years ago
  72. 98bf58f SF patch #462296: Add attributes to os.stat results; by Nick Mathewson. by Guido van Rossum · 23 years ago
  73. a6535fd Shut up warnings for setgroups() on Linux -- you have to #include by Guido van Rossum · 23 years ago
  74. 397a654 SRE bug #441409: by Fredrik Lundh · 23 years ago
  75. 61c5edf Expose setgroups. Fixes feature request #468116. by Martin v. Löwis · 23 years ago
  76. de80f2e Expose three OpenSSL API calls for dealing with the PRNG. by Jeremy Hylton · 23 years ago
  77. a25d995 The Python symtable module depends on .h files that setup.py doesn't track. by Jeremy Hylton · 23 years ago
  78. 771f914 Remove unused convenience routine. by Jeremy Hylton · 23 years ago
  79. adbd35b Simplify and regularize docstrings. Also reformat so that each docstring by Tim Peters · 23 years ago
  80. 977e540 Trimmed trailing whitespace. by Tim Peters · 23 years ago
  81. b1a37c0 Removed more comments that didn't make much sense. by Tim Peters · 23 years ago
  82. 6605c64 Removed obsolete comments about confused string refcount tricks (Jeremy by Tim Peters · 23 years ago
  83. ba3dd99 Undo needless INCREF chicanery introduced by SF patch #450702. by Jeremy Hylton · 23 years ago
  84. 9d620d0 Simplify and fix error handling for most cases. by Jeremy Hylton · 23 years ago
  85. 49900000 More reformatting. by Jeremy Hylton · 23 years ago
  86. 0965e08 Add zlib_error() helper. by Jeremy Hylton · 23 years ago
  87. 9bc9d66 Remove many calls to set MemoryError exceptions. by Jeremy Hylton · 23 years ago
  88. 9714f99 Reformat! by Jeremy Hylton · 23 years ago
  89. 3c28863 Partial patch from SF #452266, by Jason Petrone. by Guido van Rossum · 23 years ago
  90. 511e2ca [ #403753 ] zlib decompress; uncontrollable memory usage by Jeremy Hylton · 23 years ago
  91. 3eb46f3 Must terminate the Pickler_members[] and Pickler_getsets with NULL. by Jeremy Hylton · 23 years ago
  92. 30d1c75 Removed useless code to count the number of calls into the profiler. by Fred Drake · 23 years ago
  93. 499ab6a Better fix for core dumps on recursive objects in fast mode. by Jeremy Hylton · 23 years ago
  94. 2ef1b8f Remove a couple of tp_xxx fields that you are not expected to by Guido van Rossum · 23 years ago
  95. 17209fc Fix a bunch of warnings reported by Skip. by Guido van Rossum · 23 years ago
  96. 1c91707 Very subtle syntax change: in a list comprehension, the testlist in by Guido van Rossum · 23 years ago
  97. 1c07b4b Test for __sun instead of __sun__, since SUNWspro only defines the latter; by Martin v. Löwis · 23 years ago
  98. a38d916 Cast argument to set_panel_userptr to void*. Fixes bug #417240. by Martin v. Löwis · 23 years ago
  99. 7d99ff2 Speed the Windows code by using native 64-bit int compiler support instead by Tim Peters · 23 years ago
  100. 1b6e08a This compiles on Windows now. by Tim Peters · 23 years ago