1. 4c2e1af Make the low-level log-reader object export a dictionary mapping keys by Fred Drake · 23 years ago
  2. ca6dfa5 Oops. In the tp_name field, the name should be "_socket.socket", not by Guido van Rossum · 23 years ago
  3. 384ca9c Made SocketType and socket the same thing: a subclassable type whose by Guido van Rossum · 23 years ago
  4. 9f7a539 Add sendall() method, which loops until all data is written or an by Guido van Rossum · 23 years ago
  5. a0dfc85 Fix SF bug #474538: Memory (reference) leak in poller.register (Dave Brueck) by Guido van Rossum · 23 years ago
  6. 7c4b5fa After discussion with itojun, it was clarified that Tru64 is in error, by Martin v. Löwis · 23 years ago
  7. 703ce81 (experimental) "finditer" method/function. this works pretty much by Fredrik Lundh · 23 years ago
  8. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 23 years ago
  9. b8fc972 Fix typo. Thanks to Jack Jansen for spotting it. by Martin v. Löwis · 23 years ago
  10. eb9b103 Check for HP/UX curses problems. Define _XOPEN_SOURCE_EXTENDED and by Martin v. Löwis · 23 years ago
  11. 861a65b Include netdb.h to detect getaddrinfo. Work around problem with getaddrinfo by Martin v. Löwis · 23 years ago
  12. 72af01a Added missing cast. by Jack Jansen · 23 years ago
  13. 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
  14. 0d429e8 Convert the ref() and proxy() implementations to use the new by Fred Drake · 23 years ago
  15. 6de22ef another major speedup: let sre.sub/subn check for escapes in the by Fredrik Lundh · 23 years ago
  16. f864aa8 sre.split should return the last segment, even if empty (sorry, barry) by Fredrik Lundh · 23 years ago
  17. 2677512 Adding missing "static" declarations (found by "make smelly"). by Neil Schemenauer · 23 years ago
  18. dac5849 fixed character set description in docstring (SRE uses Python by Fredrik Lundh · 23 years ago
  19. 1296a8d sre.Scanner fixes (from Greg Chapman). also added a Scanner sanity by Fredrik Lundh · 23 years ago
  20. bec95b9 rewrote the pattern.sub and pattern.subn methods in C by Fredrik Lundh · 23 years ago
  21. 5b68ce3 Change clear_handlers argument to indicate whether this is an initialization. by Martin v. Löwis · 23 years ago
  22. 971e78b rewrote the pattern.split method in C by Fredrik Lundh · 23 years ago
  23. 16e65a0 Add two forgotten 'break' statements by Andrew M. Kuchling · 23 years ago
  24. cad8fa1 (Hopefully) fix SF bug #472675: CVS socketmodule now doesn't compile by Guido van Rossum · 23 years ago
  25. c524d95 SF patch #460805 by Chris Gonnerman: Support for unsetenv() by Guido van Rossum · 23 years ago
  26. b6c1d52 SF patch #443759: Add Interface to readline's add_history by Guido van Rossum · 23 years ago
  27. 4fe3c27 Expose O_LARGEFILE, O_DIRECT, O_DIRECTORY, and O_NOFOLLOW. by Martin v. Löwis · 23 years ago
  28. a4dc73e Don't leave bare newlines in long strings -- VC doesn't like that. by Guido van Rossum · 23 years ago
  29. 98bf58f SF patch #462296: Add attributes to os.stat results; by Nick Mathewson. by Guido van Rossum · 23 years ago
  30. a6535fd Shut up warnings for setgroups() on Linux -- you have to #include by Guido van Rossum · 23 years ago
  31. 397a654 SRE bug #441409: by Fredrik Lundh · 23 years ago
  32. 61c5edf Expose setgroups. Fixes feature request #468116. by Martin v. Löwis · 23 years ago
  33. de80f2e Expose three OpenSSL API calls for dealing with the PRNG. by Jeremy Hylton · 23 years ago
  34. a25d995 The Python symtable module depends on .h files that setup.py doesn't track. by Jeremy Hylton · 23 years ago
  35. 771f914 Remove unused convenience routine. by Jeremy Hylton · 23 years ago
  36. adbd35b Simplify and regularize docstrings. Also reformat so that each docstring by Tim Peters · 23 years ago
  37. 977e540 Trimmed trailing whitespace. by Tim Peters · 23 years ago
  38. b1a37c0 Removed more comments that didn't make much sense. by Tim Peters · 23 years ago
  39. 6605c64 Removed obsolete comments about confused string refcount tricks (Jeremy by Tim Peters · 23 years ago
  40. ba3dd99 Undo needless INCREF chicanery introduced by SF patch #450702. by Jeremy Hylton · 23 years ago
  41. 9d620d0 Simplify and fix error handling for most cases. by Jeremy Hylton · 23 years ago
  42. 49900000 More reformatting. by Jeremy Hylton · 23 years ago
  43. 0965e08 Add zlib_error() helper. by Jeremy Hylton · 23 years ago
  44. 9bc9d66 Remove many calls to set MemoryError exceptions. by Jeremy Hylton · 23 years ago
  45. 9714f99 Reformat! by Jeremy Hylton · 23 years ago
  46. 3c28863 Partial patch from SF #452266, by Jason Petrone. by Guido van Rossum · 23 years ago
  47. 511e2ca [ #403753 ] zlib decompress; uncontrollable memory usage by Jeremy Hylton · 23 years ago
  48. 3eb46f3 Must terminate the Pickler_members[] and Pickler_getsets with NULL. by Jeremy Hylton · 23 years ago
  49. 30d1c75 Removed useless code to count the number of calls into the profiler. by Fred Drake · 23 years ago
  50. 499ab6a Better fix for core dumps on recursive objects in fast mode. by Jeremy Hylton · 23 years ago
  51. 2ef1b8f Remove a couple of tp_xxx fields that you are not expected to by Guido van Rossum · 23 years ago
  52. 17209fc Fix a bunch of warnings reported by Skip. by Guido van Rossum · 23 years ago
  53. 1c91707 Very subtle syntax change: in a list comprehension, the testlist in by Guido van Rossum · 23 years ago
  54. 1c07b4b Test for __sun instead of __sun__, since SUNWspro only defines the latter; by Martin v. Löwis · 23 years ago
  55. a38d916 Cast argument to set_panel_userptr to void*. Fixes bug #417240. by Martin v. Löwis · 23 years ago
  56. 7d99ff2 Speed the Windows code by using native 64-bit int compiler support instead by Tim Peters · 23 years ago
  57. 1b6e08a This compiles on Windows now. by Tim Peters · 23 years ago
  58. feab23f My editor can't deal with long backslash-continued strings. Changed 'em. by Tim Peters · 23 years ago
  59. 1566a17 Get hotshot closer to compiling on Windows. by Tim Peters · 23 years ago
  60. 8c081a1 The HotShot core: look, ma, no hands! by Fred Drake · 23 years ago
  61. bca8c2e Use double curly braces for the generation0/1/2 initializers, to shut by Guido van Rossum · 23 years ago
  62. 716aac0 PySocket_getaddrinfo(): fix two refcount bugs, both having to do with by Guido van Rossum · 23 years ago
  63. a0fb177 Progress on SF bug #466175 and general cleanup. by Jeremy Hylton · 23 years ago
  64. 9e4ca10 SF bug [#467145] Python 2.2a4 build problem on HPUX 11.0. by Tim Peters · 23 years ago
  65. e2adc6c Use PySocket_Err() instead of PyErr_SetFromErrno(). by Jeremy Hylton · 23 years ago
  66. ba69936 Commit parts of SF patch #462759 by Jeremy Hylton · 23 years ago
  67. ae0013d Convert socket methods to use METH_O and METH_NOARGS where possible. by Jeremy Hylton · 23 years ago
  68. 57ca873 Add a bunch of SSL error constants by Jeremy Hylton · 23 years ago
  69. 5b6ce5a Lots of code reorganization with a few small API changes. by Jeremy Hylton · 23 years ago
  70. 22738b9 Do simple error checking before doing any SSL calls. by Jeremy Hylton · 23 years ago
  71. b0b0bd6 USe PyObject_SetString() instead of PyObject_SetObject() in newSSLObject(). by Jeremy Hylton · 23 years ago
  72. ec4b545 In newSSLObject(), initialize the various members of an SSLObject to NULL. by Jeremy Hylton · 23 years ago
  73. ab00645 A bit of reformatting to match the standard style by Jeremy Hylton · 23 years ago
  74. f86d63e Fix two memory leaks in socket.ssl(). by Jeremy Hylton · 23 years ago
  75. 1dbce44 Update URL. Fixes bug #468118. by Martin v. Löwis · 23 years ago
  76. ffa7aff Add additional fields to Xxo_Type declaration. Fixes bug #469250. by Martin v. Löwis · 23 years ago
  77. f2a67da Guido suggests, and I agree, to insist that SIZEOF_VOID_P be a power of 2. by Tim Peters · 23 years ago
  78. 6d483d3 _PyObject_VAR_SIZE: always round up to a multiple-of-pointer-size value. by Tim Peters · 23 years ago
  79. 406fe3b Repaired the debug Windows deaths in test_descr, by allocating enough by Tim Peters · 23 years ago
  80. 8c18f25 _PyObject_GC_Malloc(): split a complicated line in two. As is, there was by Tim Peters · 23 years ago
  81. f7f8cad Adjust the _weakref module to use the public API for the weak reference by Fred Drake · 23 years ago
  82. 38300c6 Fix typo in docstring by Andrew M. Kuchling · 23 years ago
  83. 244edc8 Add chroot call. Implements feature #459267. by Martin v. Löwis · 23 years ago
  84. a645b30 Add various typecasts (back and forth from char * to unsigned char *) by Greg Ward · 23 years ago
  85. 1ce3cf7 SF patch [#466877] SIGBREAK is missing from signal module. by Tim Peters · 23 years ago
  86. 0daad59 Patch #462122: add readline startup and pre_event hooks. by Martin v. Löwis · 23 years ago
  87. 16dc7f4 Patch #462190, patch #464070: Support quoted printable in the binascii module. by Martin v. Löwis · 23 years ago
  88. d38b1c7 SF [#466125] PyLong_AsLongLong works for any integer. by Tim Peters · 23 years ago
  89. e296ced Be more rigorous about making pathnames absolute, to address SF bug #424002. by Guido van Rossum · 23 years ago
  90. ede049b Add tests for new PyErr_NormalizeException() behavior by Jeremy Hylton · 23 years ago
  91. 10b164a SF patch #459385 (Norman Vine): time.timezone fix for Cygwin. by Guido van Rossum · 23 years ago
  92. e47df7a StringIO patch #462596: let's [c]StringIO accept read buffers on by Marc-André Lemburg · 23 years ago
  93. 287620f Patch #463421: speed up md5 module with real memcpy/set. by Martin v. Löwis · 23 years ago
  94. 894258c Reactivate participation of expat parsers in GC. Fixes bug #462710. by Martin v. Löwis · 23 years ago
  95. 3e8be72 I_getiter(): Function for the tp_iter slot of Itype so that by Barry Warsaw · 23 years ago
  96. 32d34c8 Add optional docstrings to getset descriptors. Fortunately, there's by Guido van Rossum · 23 years ago
  97. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
  98. 461591e PyLocale_setlocale(): silence compiler warning about free() of a const char *. by Guido van Rossum · 23 years ago
  99. c60e6f7 Patch #435971: UTF-7 codec by Brian Quinlan. by Marc-André Lemburg · 23 years ago
  100. 7090ed1 Include ctype.h after Python.h. by Martin v. Löwis · 23 years ago