1. 1afd480 Fix for #932977: MacOSX does not pass the whole pathname in argv[0] for by Jack Jansen · 20 years ago
  2. 77ca6c4 Warn abou missing mutate flag to ioctl. Fixes #696535. by Martin v. Löwis · 20 years ago
  3. 558d9bf Patch #929192: Improvements to bluetooth support. by Martin v. Löwis · 20 years ago
  4. 5ededdd Remove pcre module by Andrew M. Kuchling · 20 years ago
  5. 974ed7c - SF #962502: Add two more methods for unicode type; width() and by Hye-Shik Chang · 20 years ago
  6. 04697e8 Patch #924294: Do not check for AF_INET6 if it is not defined. by Martin v. Löwis · 20 years ago
  7. d894872 Patch #954115: Fix os.stat handling of UNC roots. Will backport to 2.3. by Martin v. Löwis · 20 years ago
  8. 027bb63 Add weakref support to sockets and re pattern objects. by Raymond Hettinger · 20 years ago
  9. cb87bc8 Add weakref support to array.array and file objects. by Raymond Hettinger · 20 years ago
  10. 691d805 Make sets and deques weak referencable. by Raymond Hettinger · 20 years ago
  11. 76b8cc8 Band-aid type fix for by Michael W. Hudson · 20 years ago
  12. 79cddc5 stupid, stupid, stupid... raw_input() already supports readline() if the by Skip Montanaro · 20 years ago
  13. 0dc2310 Exposed readline() function from the readline module. by Skip Montanaro · 20 years ago
  14. 16581c8 Set data pointer to NULL after an error; this keeps the mmap_dealloc() function from trying to do msync(-1);munmap(-1). by Andrew M. Kuchling · 20 years ago
  15. 354433a SF patch #872326: Generator expression implementation by Raymond Hettinger · 20 years ago
  16. 285cfcc Make type check work with subclasses by Raymond Hettinger · 20 years ago
  17. 0e371f2 Make sure "del d[n]" is properly supported. Was necessary because the by Raymond Hettinger · 20 years ago
  18. 23164a5 In order to fix SF bug # 824977, we replace calloc()/free() calls in by Barry Warsaw · 20 years ago
  19. fd0283e SF #832236: merge from release23-maint branch: wrap a bunch of by Greg Ward · 20 years ago
  20. 9d7c870 SF #950057: itertools.chain doesn't "process" exceptions as they occur by Raymond Hettinger · 20 years ago
  21. 7d9c6c7 Fix _sre.CODESIZE on 64-bit machines in UCS-4 mode. Fixes #931848. by Martin v. Löwis · 20 years ago
  22. 2d5914b Fix [ 947405 ] os.utime() raises bad exception for unicode filenames by Mark Hammond · 20 years ago
  23. ce97fbe Correct the file name of _heapq module. by Hye-Shik Chang · 20 years ago
  24. 1660e0c * Restore the pure python version of heapq.py. by Raymond Hettinger · 20 years ago
  25. c46cb2a * Restore the pure python version of heapq.py. by Raymond Hettinger · 20 years ago
  26. 61e40bd Special case normalization of empty strings. Fixes #924361. Backported to 2.3. by Martin v. Löwis · 20 years ago
  27. 0046839 Change two instance of format strings for PyString_FromFormat() to use %ld by Brett Cannon · 20 years ago
  28. 7892b1c * Add unittests for iterators that report their length by Raymond Hettinger · 20 years ago
  29. daedf21 Fixes for AF_UNIX support on OS/2: by Andrew MacIntyre · 20 years ago
  30. 7dacda2 Provide more information representations of repeat() and count(). by Raymond Hettinger · 20 years ago
  31. d12dfbb OS/2's TCP/IP stack supports AF_UNIX sockets, with the limitation that by Andrew MacIntyre · 20 years ago
  32. 69e18c9 OS/2 has support for spawnvp() and spawnvpe() in the C libraries supplied by Andrew MacIntyre · 20 years ago
  33. da4d6cb OS/2 VACPP build updates/fixes by Andrew MacIntyre · 20 years ago
  34. 2786d90 A few more PyThreadState_Get to PyThreadState_GET conversions by Nicholas Bastin · 20 years ago
  35. e5662ae Changed random calls to PyThreadState_Get() to use the macro by Nicholas Bastin · 20 years ago
  36. 06c3479 Make socket.sslerror a subclass of socket.error . by Brett Cannon · 20 years ago
  37. 77d9a3e Patch #871657: Set EDOM for `nan' return values on FreeBSD and OpenBSD. by Hye-Shik Chang · 20 years ago
  38. e62c5c8 Added configure check for broken poll() on some unix systems (MacOS X 10.3) by Nicholas Bastin · 20 years ago
  39. 3f60629 SF bug 847019 datetime.datetime initialization needs more strict checking by Tim Peters · 20 years ago
  40. c3a87b8 Bug #920575: Add a workaround for GNU libc nl_langinfo()'s returning NULL. by Hye-Shik Chang · 20 years ago
  41. 1e5809f Improve deque iteration. by Raymond Hettinger · 20 years ago
  42. 0faa1ca Speedup the inner loops for dropwhile(), islice(), ifilter(), and by Raymond Hettinger · 20 years ago
  43. 0c65771 fixes SF bug 914019 - DB.has_key was not honoring its txn argument by Gregory P. Smith · 20 years ago
  44. 49f9bd1 SF feature request #686323: Minor array module enhancements by Raymond Hettinger · 20 years ago
  45. 6e2ee86 Update the array overallocation scheme to match the approach used for by Raymond Hettinger · 20 years ago
  46. 3aa82c0 SF bug #910986: copy.copy fails for array.array by Raymond Hettinger · 20 years ago
  47. 6ec0996 SF patch #907403: Improvements to cStringIO.writelines() by Raymond Hettinger · 21 years ago
  48. 6c79a51 Special case endpoint access for speed. by Raymond Hettinger · 21 years ago
  49. d1080a3 Have strftime() check its time tuple argument to make sure the tuple's values by Brett Cannon · 21 years ago
  50. 0a4977c Replace left(), right(), and __reversed__() with the more general purpose by Raymond Hettinger · 21 years ago
  51. 786ea6b Add pystack definition to Misc/gdbinit with some explanation of its behavior by Skip Montanaro · 21 years ago
  52. 87f1013 Make deque_type static so namespace is not polluted. by Neal Norwitz · 21 years ago
  53. 738ec90 Improvements to collections.deque(): by Raymond Hettinger · 21 years ago
  54. a9208f1 Get rid of unused variable by Neal Norwitz · 21 years ago
  55. bc72c5a Speed-up the joiner call by avoiding Py_BuildValue(). by Raymond Hettinger · 21 years ago
  56. 2460c62 made cPickle fall back to the copy_reg/reduce protocol, by Christian Tismer · 21 years ago
  57. a7befda Fixes SF bug # 778421 by Gregory P. Smith · 21 years ago
  58. 44dbae8 Remove gcc warning from using "main". Use METH_NOARGS instead of METH_VARARGS by Neal Norwitz · 21 years ago
  59. e2b4b32 Implementation of patch 869468 by David Ascher · 21 years ago
  60. 5d7c067 Make socketmodule compile again on a modern Linux (that supports Bluetooth). by Anthony Baxter · 21 years ago
  61. 94f1d71 Fix docstrings to mention the correct function by Neal Norwitz · 21 years ago
  62. 601b963 - Fixing annoying warnings. by Gustavo Niemeyer · 21 years ago
  63. a6e436e - Fixed #853061: allow BZ2Compressor.compress() to receive an empty string by Gustavo Niemeyer · 21 years ago
  64. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 21 years ago
  65. f3938fd need to initialize ob_type slot at run-time, at least on cygwin by Skip Montanaro · 21 years ago
  66. 7befb99 remove support for missing ANSI C header files (limits.h, stddef.h, etc). by Skip Montanaro · 21 years ago
  67. 5cab2e3 Give itertools.repeat() a length method. by Raymond Hettinger · 21 years ago
  68. ee33b27 Make deque.rotate() smarter. Beef-up related tests. by Raymond Hettinger · 21 years ago
  69. 5c5eb86 * Incorporate Skip's suggestions for documentation (explain the word deque by Raymond Hettinger · 21 years ago
  70. db60805 Remove support for --without-universal-newlines (see PEP 11). by Skip Montanaro · 21 years ago
  71. c058fd1 * Fix ref counting in extend() and extendleft(). by Raymond Hettinger · 21 years ago
  72. 3ba85c2 Have deques support high volume loads. by Raymond Hettinger · 21 years ago
  73. 96c44658 Add FreeBSD support for bluetooth sockets. (SF Patch #888148) by Hye-Shik Chang · 21 years ago
  74. 8126860 Add FreeBSD support for bluetooth sockets. by Hye-Shik Chang · 21 years ago
  75. 12af048 Patch #874083: Bluetooth support for socket module. by Martin v. Löwis · 21 years ago
  76. d0814eb Fix spelling. by Raymond Hettinger · 21 years ago
  77. 756b3f3 * Move collections.deque() in from the sandbox by Raymond Hettinger · 21 years ago
  78. 141d4e5 Add missed entry for cjkcodecs._iso_2022_kr. by Hye-Shik Chang · 21 years ago
  79. d210a5b Fix MSVC6 warnings. (spotted by Tim Peters) by Hye-Shik Chang · 21 years ago
  80. e1b1c87 pwd_getpwuid(), pwd_getpwnam(): Patch # 868499, improvement to the error by Barry Warsaw · 21 years ago
  81. c7a7709 grp_getgrgid(), grp_getgrnam(): Patch # 868499, improvement to the error by Barry Warsaw · 21 years ago
  82. f073b75 Removing TODO comment for None keys, as suggested by Neal Norwitz. by Gustavo Niemeyer · 21 years ago
  83. 8974f72 When key is None, give up if _DB_get_type() returns -1 as well. by Gustavo Niemeyer · 21 years ago
  84. 024f2de Fixing #880531: raise TypeError when trying to use a None key with RECNO by Gustavo Niemeyer · 21 years ago
  85. 3e2a306 Add CJK codecs support as discussed on python-dev. (SF #873597) by Hye-Shik Chang · 21 years ago
  86. ce59c04 Remove support for SunOS 4. by Skip Montanaro · 21 years ago
  87. 8135fd5 Make parameter names in docstring more mnemonic by Andrew M. Kuchling · 21 years ago
  88. 7e6bbe1 The format of the string data used in the imageop module is described by Sjoerd Mullender · 21 years ago
  89. 0c41027 SF Patch #864863: Bisect C implementation (Contributed by Dmitry Vasiliev.) by Raymond Hettinger · 21 years ago
  90. 2b2c973 FIx unicodefilename support of posix.uname(). This fixes test_unicode_file by Hye-Shik Chang · 21 years ago
  91. 674d56b Convert return value to boolean. by Raymond Hettinger · 21 years ago
  92. da91d02 Add IPV6_ socket options from RFCs 3493 and 3542. Fixes #867012. by Martin v. Löwis · 21 years ago
  93. a7b673f Fix erroneus argument parsing of socket.htons() on 64bit big endian machines. by Hye-Shik Chang · 21 years ago
  94. 9342fb4 Make private/local functions static by Neal Norwitz · 21 years ago
  95. 2cbdc2a Cleaning up recursive pieces left in the reorganization. by Gustavo Niemeyer · 21 years ago
  96. d25c1c6 Implement itertools.groupby() by Raymond Hettinger · 21 years ago
  97. bd3a240 Fix typos. by Raymond Hettinger · 21 years ago
  98. 817c929 Fix [ 846133 ] os.chmod/os.utime/shutil do not work with unicode filenames by Mark Hammond · 21 years ago
  99. 148eb6a doc nit by Skip Montanaro · 21 years ago
  100. 166958b As discussed on python-dev, added two extractor functions to the by Raymond Hettinger · 21 years ago