1. 5ce2587 Fix grammatical typo in a comment. by Brett Cannon · 19 years ago
  2. 9c323f8 SF patch #941881: PEP 309 Implementation (Partial Function Application). by Raymond Hettinger · 19 years ago
  3. 9533e34 Patch #1093585: raise a ValueError for negative history items in by Martin v. Löwis · 19 years ago
  4. 54c273c The error message "can't start new thread" should not end in a newline. by Guido van Rossum · 19 years ago
  5. 9867ced Fix by Michael W. Hudson · 20 years ago
  6. 6267996 Put docstring for getspall into same #ifdef block as function definition by Neal Norwitz · 20 years ago
  7. c300175 Patch #579435: Shadow Password Support Module by Martin v. Löwis · 20 years ago
  8. fe33d0b Default stat_float_times to true. by Martin v. Löwis · 20 years ago
  9. f69d94f Moved reader \r and \n processing from the iterator to the state machine - by Andrew McNamara · 20 years ago
  10. 0af3ade Add strptime() constructor to datetime class. Thanks to Josh Spoerri for by Skip Montanaro · 20 years ago
  11. 5cfd837 Improve wording of parser error message. by Andrew McNamara · 20 years ago
  12. 7f2053e Add counting of source iterator lines to the reader object - handy for by Andrew McNamara · 20 years ago
  13. 0f0599d When quoting=QUOTE_NONNUMERIC, the reader now casts unquoted fields to floats. by Andrew McNamara · 20 years ago
  14. 5d45a8d Fix logic problem in quoting=csv.QUOTE_ALL, quotechar=None check, add test. by Andrew McNamara · 20 years ago
  15. c89f284 When using QUOTE_NONNUMERIC, we now test for "numericness" with by Andrew McNamara · 20 years ago
  16. 31d8896 Rename csv.set_field_limit to csv.field_size_limit (since it both sets and by Andrew McNamara · 20 years ago
  17. cf0fd5a Add belt and braces check of PyString_AsString return. by Andrew McNamara · 20 years ago
  18. e4d05c4 Set an upper limit on the size of the field buffer, raise an exception by Andrew McNamara · 20 years ago
  19. 29bf4e4 Now that internal dialect type is immutable, and the dialect registry by Andrew McNamara · 20 years ago
  20. 8c94b42 No longer attempt to instantiate python classes describing dialects. This by Andrew McNamara · 20 years ago
  21. 8662597 Allow dialect-describing keywords to be supplied to register_dialect, by Andrew McNamara · 20 years ago
  22. 91b9746 Factor out the code for making a dialect instance. by Andrew McNamara · 20 years ago
  23. dbce261 Only set error string when dict lookup found no matching key (was setting by Andrew McNamara · 20 years ago
  24. a829263 When parsing args that return a single character, treat null string the by Andrew McNamara · 20 years ago
  25. 37d2bdf Where a string is desired, test for PyBaseString_Type derived type, by Andrew McNamara · 20 years ago
  26. 77ead87 Add missing PyObject_GC_Track and PyObject_GC_UnTrack calls to csv reader and by Andrew McNamara · 20 years ago
  27. 36a7691 Fix parsing of csv files with escapes (escape character previously would be by Andrew McNamara · 20 years ago
  28. dd3e6cb Fix to use PEP7 brace style. by Andrew McNamara · 20 years ago
  29. 1196cf1 Improved the implementation of the internal "dialect" type. The new by Andrew McNamara · 20 years ago
  30. 575a00b Delete Reader_getiter and replace with PyObject_SelfIter. by Andrew McNamara · 20 years ago
  31. 3b585b3 [Bug #1083110] calling .flush() on decompress objects causes a segfault due to an uninitialized pointer: fixes the problem and adds a test case by Andrew M. Kuchling · 20 years ago
  32. 3a4231d Bug #1087216: datetime module documentation missing critical detail by Raymond Hettinger · 20 years ago
  33. a3be258 fix unterminated comment by Andrew MacIntyre · 20 years ago
  34. 6f5b741 SF bug #1086555: refcount problem in syslog by Raymond Hettinger · 20 years ago
  35. b0900e6 SF #1085304: Make array.array pickle-able by Raymond Hettinger · 20 years ago
  36. 8a6a59c fixed compilation against BerkeleyDB 3.2.9 (sf bug # 1077040) by Gregory P. Smith · 20 years ago
  37. 8b7e917 * Adds support for building against BerkeleyDB 4.3.21 by Gregory P. Smith · 20 years ago
  38. a4a8afb OS/2 specific fixes related to SF bug # 1003471. by Andrew MacIntyre · 20 years ago
  39. a6b45cc Eliminate the deprecated option to return None instead of a tuple of arguments in __reduce__(). by Raymond Hettinger · 20 years ago
  40. b259405 Added optional None arguments to itertools.islice(). by Raymond Hettinger · 20 years ago
  41. 166878f Fixing bug #1072259 in SRE. by Gustavo Niemeyer · 20 years ago
  42. 02d74f6 Hear the #error: change the default value of the mutable_arg argument by Michael W. Hudson · 20 years ago
  43. 7a8173a Rename a static variable "history_length" to "_history_length". by Hye-Shik Chang · 20 years ago
  44. a9cadcd Correct the handling of 0-termination of PyUnicode_AsWideChar() by Marc-André Lemburg · 20 years ago
  45. fba7369 Patch #1050475: Fix various x86_64 build issues by Martin v. Löwis · 20 years ago
  46. 2c45c9a SF patch 1062495: Modules/zipimport.c does not compile on solaris by Raymond Hettinger · 20 years ago
  47. 952f880 SF patch #1062279: deque pickling problems (Contributed by Dima Dorfman.) by Raymond Hettinger · 20 years ago
  48. 80961f3 Fix apparently trivial buffer overflow (SF bug 1060396). by Jeremy Hylton · 20 years ago
  49. 7d112df Bump-up block size. by Raymond Hettinger · 20 years ago
  50. bb9c739 Add error checks for the bz2, cStringIO and operator modules. by Walter Dörwald · 20 years ago
  51. bc1d1b8 gc_list_move(): Make this truly equivalent to remove+append. While by Tim Peters · 20 years ago
  52. e2d5918 gc list function cleanup. by Tim Peters · 20 years ago
  53. cc2a866 handle_weakrefs(): Simplification -- there's no need to make a second by Tim Peters · 20 years ago
  54. ead8b7a SF 1055820: weakref callback vs gc vs threads by Tim Peters · 20 years ago
  55. 08ebfec some platforms still need offsetof() from structmember.h by Fred Drake · 20 years ago
  56. a9f6092 Fix and test weak referencing of itertools.tee objects. by Raymond Hettinger · 20 years ago
  57. 3079391 Just remove the #include of signal.h. That it was C++-commented out by Michael W. Hudson · 20 years ago
  58. f7c8d93 Use C89 style comment for old compilers by Neal Norwitz · 20 years ago
  59. 9171f02 Synchronize with PyXML 1.79: by Martin v. Löwis · 20 years ago
  60. 8a560de Patch 977343, Solaris likes sys/loadavg.h. Added support for sys/loadavg.h by Anthony Baxter · 20 years ago
  61. 9ceaa72 Patch #975056 - fixes for restartable signals on *BSD. In addition, by Anthony Baxter · 20 years ago
  62. dcb9d94 Simplify delitem() code by calling rotate() directly instead of using by Raymond Hettinger · 20 years ago
  63. 8da2b01 This is Michiel de Hoon's patch, as attached to the bug report: by Michael W. Hudson · 20 years ago
  64. db29e0f SF patch #1035498: -m option to run a module as a script by Raymond Hettinger · 20 years ago
  65. c5fa992 Armin's patch to prevent overflows. by Raymond Hettinger · 20 years ago
  66. 974d757 Upon insertion, if memory runs out, the deque was left in a corrupted state. by Armin Rigo · 20 years ago
  67. 880430e Replace structure member before decreffing. by Raymond Hettinger · 20 years ago
  68. d1b3d88 * Bulletproof the method for detecting mutations during iteration. by Raymond Hettinger · 20 years ago
  69. 77e8bf1 Restore the block length and add a comment. by Raymond Hettinger · 20 years ago
  70. 4ca4c7c Clarify the relationship between indices. by Raymond Hettinger · 20 years ago
  71. 61f05fb * Elaborate on the invariant comments and make them more precise. by Raymond Hettinger · 20 years ago
  72. 10c7e86 deque_traverse(): If the deque had one block, and its rightindex was by Tim Peters · 20 years ago
  73. d6e0032 Typos in new comments. by Tim Peters · 20 years ago
  74. d8768d3 Document some reverse-engineered invariants and pragmatic hints. by Tim Peters · 20 years ago
  75. 6f85356 Definition consistency. by Tim Peters · 20 years ago
  76. 1065f75 Trimmed trailing whitespace. by Tim Peters · 20 years ago
  77. 4cda01e * Increase test coverage. by Raymond Hettinger · 20 years ago
  78. 87de0ca Silence a compiler warning by supplying the correct argument type to by Raymond Hettinger · 20 years ago
  79. 855d9a9 Plug a leak and beef-up test coverage. by Raymond Hettinger · 20 years ago
  80. b6aa856 Patch #1009075, bug #952953: allow execve with empty 2nd argument by Armin Rigo · 20 years ago
  81. 9f90439 Patch #1011240: SystemError generated by struct.pack('P', 'foo'). by Armin Rigo · 20 years ago
  82. 9447874 Add docstrings for regular expression objects and methods. by Raymond Hettinger · 20 years ago
  83. 528ca53 SF bug #1028306: date-datetime comparison by Tim Peters · 20 years ago
  84. 8ea5bdf Patch for compilation on IRIX from rwgk on http://python.org/sf/728330 by Trent Mick · 20 years ago
  85. 6965203 SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support by Walter Dörwald · 20 years ago
  86. a708d6e Apply patch from http://python.org/sf/728330 to fix socket module compilation on Solaris 2.6, HP-UX 11, AIX 5.1 and (possibly) some IRIX versions. by Trent Mick · 20 years ago
  87. 9fd5e9a Remove redunandant assertions from last checkin. by Raymond Hettinger · 20 years ago
  88. 658717e SF #1022953: binascii.a2b_hqx("") raises SystemError by Raymond Hettinger · 20 years ago
  89. 8158e84 Fix erroneous docstring comment. by Raymond Hettinger · 20 years ago
  90. 442c9fc SF bug 1017405: the keys() values() and items() DB methods were by Gregory P. Smith · 20 years ago
  91. 0506c64 Fixing bug #817234, which made SRE get into an infinite loop on by Gustavo Niemeyer · 20 years ago
  92. 75ccea3 SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes by Raymond Hettinger · 20 years ago
  93. 4e699d5 Remove mpz, rotor, xreadlines modules by Andrew M. Kuchling · 20 years ago
  94. 57269d0 Remove mpz, rotor, xreadlines modules by Andrew M. Kuchling · 20 years ago
  95. 1a4ddae SF patch #1007189, multi-line imports, for instance: by Anthony Baxter · 20 years ago
  96. d311538 win32_urandom(): There's no need to copy the generated byte string, so don't. by Tim Peters · 20 years ago
  97. 9b279a8 win32_urandom(): pass the function name to PyArg_ParseTuple, for better by Tim Peters · 20 years ago
  98. 51eba61 win32_urandom(): Raise ValueError if the argument is negative. by Tim Peters · 20 years ago
  99. 4ad8217 win32_urandom(): Rewrite to Python C standards (hard tabs, function name by Tim Peters · 20 years ago
  100. dc3883f Patch #934711: Expose platform-specific entropy. by Martin v. Löwis · 20 years ago