1. 98bf58f SF patch #462296: Add attributes to os.stat results; by Nick Mathewson. by Guido van Rossum · 23 years ago
  2. a6535fd Shut up warnings for setgroups() on Linux -- you have to #include by Guido van Rossum · 23 years ago
  3. 397a654 SRE bug #441409: by Fredrik Lundh · 23 years ago
  4. 61c5edf Expose setgroups. Fixes feature request #468116. by Martin v. Löwis · 23 years ago
  5. de80f2e Expose three OpenSSL API calls for dealing with the PRNG. by Jeremy Hylton · 23 years ago
  6. a25d995 The Python symtable module depends on .h files that setup.py doesn't track. by Jeremy Hylton · 23 years ago
  7. 771f914 Remove unused convenience routine. by Jeremy Hylton · 23 years ago
  8. adbd35b Simplify and regularize docstrings. Also reformat so that each docstring by Tim Peters · 23 years ago
  9. 977e540 Trimmed trailing whitespace. by Tim Peters · 23 years ago
  10. b1a37c0 Removed more comments that didn't make much sense. by Tim Peters · 23 years ago
  11. 6605c64 Removed obsolete comments about confused string refcount tricks (Jeremy by Tim Peters · 23 years ago
  12. ba3dd99 Undo needless INCREF chicanery introduced by SF patch #450702. by Jeremy Hylton · 23 years ago
  13. 9d620d0 Simplify and fix error handling for most cases. by Jeremy Hylton · 23 years ago
  14. 49900000 More reformatting. by Jeremy Hylton · 23 years ago
  15. 0965e08 Add zlib_error() helper. by Jeremy Hylton · 23 years ago
  16. 9bc9d66 Remove many calls to set MemoryError exceptions. by Jeremy Hylton · 23 years ago
  17. 9714f99 Reformat! by Jeremy Hylton · 23 years ago
  18. 3c28863 Partial patch from SF #452266, by Jason Petrone. by Guido van Rossum · 23 years ago
  19. 511e2ca [ #403753 ] zlib decompress; uncontrollable memory usage by Jeremy Hylton · 23 years ago
  20. 3eb46f3 Must terminate the Pickler_members[] and Pickler_getsets with NULL. by Jeremy Hylton · 23 years ago
  21. 30d1c75 Removed useless code to count the number of calls into the profiler. by Fred Drake · 23 years ago
  22. 499ab6a Better fix for core dumps on recursive objects in fast mode. by Jeremy Hylton · 23 years ago
  23. 2ef1b8f Remove a couple of tp_xxx fields that you are not expected to by Guido van Rossum · 23 years ago
  24. 17209fc Fix a bunch of warnings reported by Skip. by Guido van Rossum · 23 years ago
  25. 1c91707 Very subtle syntax change: in a list comprehension, the testlist in by Guido van Rossum · 23 years ago
  26. 1c07b4b Test for __sun instead of __sun__, since SUNWspro only defines the latter; by Martin v. Löwis · 23 years ago
  27. a38d916 Cast argument to set_panel_userptr to void*. Fixes bug #417240. by Martin v. Löwis · 23 years ago
  28. 7d99ff2 Speed the Windows code by using native 64-bit int compiler support instead by Tim Peters · 23 years ago
  29. 1b6e08a This compiles on Windows now. by Tim Peters · 23 years ago
  30. feab23f My editor can't deal with long backslash-continued strings. Changed 'em. by Tim Peters · 23 years ago
  31. 1566a17 Get hotshot closer to compiling on Windows. by Tim Peters · 23 years ago
  32. 8c081a1 The HotShot core: look, ma, no hands! by Fred Drake · 23 years ago
  33. bca8c2e Use double curly braces for the generation0/1/2 initializers, to shut by Guido van Rossum · 23 years ago
  34. 716aac0 PySocket_getaddrinfo(): fix two refcount bugs, both having to do with by Guido van Rossum · 23 years ago
  35. a0fb177 Progress on SF bug #466175 and general cleanup. by Jeremy Hylton · 23 years ago
  36. 9e4ca10 SF bug [#467145] Python 2.2a4 build problem on HPUX 11.0. by Tim Peters · 23 years ago
  37. e2adc6c Use PySocket_Err() instead of PyErr_SetFromErrno(). by Jeremy Hylton · 23 years ago
  38. ba69936 Commit parts of SF patch #462759 by Jeremy Hylton · 23 years ago
  39. ae0013d Convert socket methods to use METH_O and METH_NOARGS where possible. by Jeremy Hylton · 23 years ago
  40. 57ca873 Add a bunch of SSL error constants by Jeremy Hylton · 23 years ago
  41. 5b6ce5a Lots of code reorganization with a few small API changes. by Jeremy Hylton · 23 years ago
  42. 22738b9 Do simple error checking before doing any SSL calls. by Jeremy Hylton · 23 years ago
  43. b0b0bd6 USe PyObject_SetString() instead of PyObject_SetObject() in newSSLObject(). by Jeremy Hylton · 23 years ago
  44. ec4b545 In newSSLObject(), initialize the various members of an SSLObject to NULL. by Jeremy Hylton · 23 years ago
  45. ab00645 A bit of reformatting to match the standard style by Jeremy Hylton · 23 years ago
  46. f86d63e Fix two memory leaks in socket.ssl(). by Jeremy Hylton · 23 years ago
  47. 1dbce44 Update URL. Fixes bug #468118. by Martin v. Löwis · 23 years ago
  48. ffa7aff Add additional fields to Xxo_Type declaration. Fixes bug #469250. by Martin v. Löwis · 23 years ago
  49. f2a67da Guido suggests, and I agree, to insist that SIZEOF_VOID_P be a power of 2. by Tim Peters · 23 years ago
  50. 6d483d3 _PyObject_VAR_SIZE: always round up to a multiple-of-pointer-size value. by Tim Peters · 23 years ago
  51. 406fe3b Repaired the debug Windows deaths in test_descr, by allocating enough by Tim Peters · 23 years ago
  52. 8c18f25 _PyObject_GC_Malloc(): split a complicated line in two. As is, there was by Tim Peters · 23 years ago
  53. f7f8cad Adjust the _weakref module to use the public API for the weak reference by Fred Drake · 23 years ago
  54. 38300c6 Fix typo in docstring by Andrew M. Kuchling · 23 years ago
  55. 244edc8 Add chroot call. Implements feature #459267. by Martin v. Löwis · 23 years ago
  56. a645b30 Add various typecasts (back and forth from char * to unsigned char *) by Greg Ward · 23 years ago
  57. 1ce3cf7 SF patch [#466877] SIGBREAK is missing from signal module. by Tim Peters · 23 years ago
  58. 0daad59 Patch #462122: add readline startup and pre_event hooks. by Martin v. Löwis · 23 years ago
  59. 16dc7f4 Patch #462190, patch #464070: Support quoted printable in the binascii module. by Martin v. Löwis · 23 years ago
  60. d38b1c7 SF [#466125] PyLong_AsLongLong works for any integer. by Tim Peters · 23 years ago
  61. e296ced Be more rigorous about making pathnames absolute, to address SF bug #424002. by Guido van Rossum · 23 years ago
  62. ede049b Add tests for new PyErr_NormalizeException() behavior by Jeremy Hylton · 23 years ago
  63. 10b164a SF patch #459385 (Norman Vine): time.timezone fix for Cygwin. by Guido van Rossum · 23 years ago
  64. e47df7a StringIO patch #462596: let's [c]StringIO accept read buffers on by Marc-André Lemburg · 23 years ago
  65. 287620f Patch #463421: speed up md5 module with real memcpy/set. by Martin v. Löwis · 23 years ago
  66. 894258c Reactivate participation of expat parsers in GC. Fixes bug #462710. by Martin v. Löwis · 23 years ago
  67. 3e8be72 I_getiter(): Function for the tp_iter slot of Itype so that by Barry Warsaw · 23 years ago
  68. 32d34c8 Add optional docstrings to getset descriptors. Fortunately, there's by Guido van Rossum · 23 years ago
  69. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
  70. 461591e PyLocale_setlocale(): silence compiler warning about free() of a const char *. by Guido van Rossum · 23 years ago
  71. c60e6f7 Patch #435971: UTF-7 codec by Brian Quinlan. by Marc-André Lemburg · 23 years ago
  72. 7090ed1 Include ctype.h after Python.h. by Martin v. Löwis · 23 years ago
  73. c57428d Patch to bug #461753: Allow None in ExternalEntityParserCreate. by Martin v. Löwis · 23 years ago
  74. 59b6865 fixed #449964: sre.sub raises an exception if the template contains a by Fredrik Lundh · 23 years ago
  75. 21009b9 an SRE bugfix a day keeps Guido away... by Fredrik Lundh · 23 years ago
  76. fda3c3d [Patch #462255, from Jason Tishler] Re-enables building the resouce by Andrew M. Kuchling · 23 years ago
  77. 0891ac0 The 'p' (Pascal string) pack code acts unreasonably when the string size by Tim Peters · 23 years ago
  78. caef93d Silence warnings about passing unsigned char** as char**. by Martin v. Löwis · 23 years ago
  79. 3bd8c1e Patch #450702: allow threads when calling into zlib, protect usage of by Martin v. Löwis · 23 years ago
  80. 39e0c5d Fix compiler warnings. This closes some of the #458880 problem. by Martin v. Löwis · 23 years ago
  81. 387c547 Revert parts of patch #453627, documenting the resulting test failures instead. by Martin v. Löwis · 23 years ago
  82. 6e13a56 Enable large file support on Win32 systems. by Tim Peters · 23 years ago
  83. a40c793 Rework the way we try to check for libm overflow, given that C99 no longer by Tim Peters · 23 years ago
  84. 7c82a3e0 Patch #449815: Set filesystemencoding based on CODESET. by Martin v. Löwis · 23 years ago
  85. 655c955 Patch #453627: Define the following macros when compiling on a UnixWare 7.x system: by Martin v. Löwis · 23 years ago
  86. e5ca6c7 loghelper(): Try to nudge the compiler into doing mults in an order that by Tim Peters · 23 years ago
  87. 7852616 Return reasonable results for math.log(long) and math.log10(long) (we were by Tim Peters · 23 years ago
  88. 63c9453 Mechanical fiddling to make this easier to work with in my editor. by Tim Peters · 23 years ago
  89. 4a596e3 [Bug #457654] bkgd() used a hard-coded A_NORMAL attribute, when it should by Andrew M. Kuchling · 23 years ago
  90. 1832de4 PEP 238 documented -Qwarn as warning only for classic int or long by Guido van Rossum · 23 years ago
  91. 61c345f Rename the -D option to -Q, to avoid a Jython option name conflict. by Guido van Rossum · 23 years ago
  92. 97741a3 Oops. The -W option takes args, not -X. by Guido van Rossum · 23 years ago
  93. 393661d Add warning mode for classic division, almost exactly as specified in by Guido van Rossum · 23 years ago
  94. 89dfe9e Removed unreachable return to silence SGI compiler. by Sjoerd Mullender · 23 years ago
  95. 6f848c1 Removed an unreachable break statement to silence SGI compiler. by Sjoerd Mullender · 23 years ago
  96. 45c9ae5 gcmodule is now always compiled by Neil Schemenauer · 23 years ago
  97. 7d0e19e gcmodule is now enabled here by Neil Schemenauer · 23 years ago
  98. 43411b5 Make more things internal to this file. Remove by Neil Schemenauer · 23 years ago
  99. e83c00e Use new GC API. by Neil Schemenauer · 23 years ago
  100. 01b66a8 Remove bogus PyGC_HEAD_SIZE. by Neil Schemenauer · 23 years ago