1. d15dc06 Implemented thread-local data as proposed on python-dev: by Jim Fulton · 20 years ago
  2. b8e1717 [Patch #947352 from Jason Andryuk] Add support for AF_PACKET hardware addresses by Andrew M. Kuchling · 20 years ago
  3. 3e377de Change some declarations from ``char *`` to ``const char *``. Also added by Brett Cannon · 20 years ago
  4. 27d3dda [Patch #909007] Enable a bunch of safe bug workarounds in OpenSSL, for compatibility with various broken SSL implementations out there. by Andrew M. Kuchling · 20 years ago
  5. 9c3efe3 [Patch #945642] Fix non-blocking SSL sockets, which blocked on reads/writes in Python 2.3. by Andrew M. Kuchling · 20 years ago
  6. 3ffff2a Add comments at end of every #endif and fix ones already there when for closing by Brett Cannon · 20 years ago
  7. 42851ab [Patch #982665 ] add SO_EXCLUSIVEADDRUSE constant by Andrew M. Kuchling · 20 years ago
  8. 3f41974 Add generic codecs.encode() and .decode() APIs that don't impose by Marc-André Lemburg · 20 years ago
  9. f6067ec Add an #ifdef __APPLE__ around typedef of foreachfunc to match Apple's by Brett Cannon · 20 years ago
  10. 37b0c1d Fix memory leak and bump the version per Greg by Neal Norwitz · 20 years ago
  11. b4a5581 Cleanup support for older pythons (perhaps it should be removed?) by Neal Norwitz · 20 years ago
  12. a435c53 * balance the left/right search for getitem. by Raymond Hettinger · 20 years ago
  13. 2384990 PyThreadState_Swap(NULL) didn't do what I thought it did. Fixes by Michael W. Hudson · 20 years ago
  14. 30ea2f2 This closes patch: by Michael W. Hudson · 20 years ago
  15. ea271f2 [Bug #982806] The default argument for opening GDBM files is bogus. Patch #984672 by James Lamanna by Andrew M. Kuchling · 20 years ago
  16. 5a8b459 OS/2 EMX needs addrinfo.h for code included from getaddrinfo.c by Andrew MacIntyre · 20 years ago
  17. 0a4dd39 Make weak references subclassable: by Fred Drake · 20 years ago
  18. 19699a9 Adds support for DB.pget and DBCursor.pget methods. by Gregory P. Smith · 20 years ago
  19. 31c5065 Add weakref support to all bsddb.db objects. by Gregory P. Smith · 20 years ago
  20. 11b91a0 Added socket.getservbyport(), and make its second argument and that of by Barry Warsaw · 20 years ago
  21. 589c6ab raise the module minor version. by Gregory P. Smith · 20 years ago
  22. dc5af70 SF patch / bug #967763 by Gregory P. Smith · 20 years ago
  23. e7c0532 sizeof(char) is 1, by definition, so get rid of that expression in by Tim Peters · 20 years ago
  24. 616f4f6 Add a comment with implementation notes. by Raymond Hettinger · 20 years ago
  25. f6af76d Modules/getpath.c now compiles properly under OS X when using the by Brett Cannon · 20 years ago
  26. 6cc4814 Change comment from C++ style to C. by Brett Cannon · 20 years ago
  27. 9ddf40b SF patch 876130: add C API to datetime module, from Anthony Tuininga. by Tim Peters · 20 years ago
  28. 28224f8 Improve the documented advice on how to best use heapq.heapreplace(). by Raymond Hettinger · 20 years ago
  29. 1761a7c Use PyArg_UnpackTuple() where possible. by Raymond Hettinger · 20 years ago
  30. 1b6f7a9 Bug 975996: Add _PyTime_DoubleToTimet to C API by Tim Peters · 20 years ago
  31. 298c380 Raise ValueError when value being stored in a time_t variable will result in by Brett Cannon · 20 years ago
  32. 1ce9e4c Fixed end-of-loop code not reached warning when using SunPro C by Nicholas Bastin · 20 years ago
  33. 24ec211 silly typo by Michael W. Hudson · 20 years ago
  34. aefde43 Reverse argument order for nsmallest() and nlargest(). by Raymond Hettinger · 20 years ago
  35. 969297f Return unicode strings from _getfullpathname even on W9X. Fixes #924703 . by Martin v. Löwis · 20 years ago
  36. b67ad7e Patch #826074: cmath.log optional base argument, fixes #823209 by Raymond Hettinger · 20 years ago
  37. 7a13516 SF patch #969180, hotshot incorrectly computes elapsed time by Jason Beardsley. by Neal Norwitz · 20 years ago
  38. 75a3204 Remove warning (static not being first) when building with -W by Neal Norwitz · 20 years ago
  39. 0a8266a Remove warning about implicit declaration of strcmp() by Neal Norwitz · 20 years ago
  40. de72edd Fixup error exits in nlargest() and nsmallest(). by Raymond Hettinger · 20 years ago
  41. 2e3dfaf Install C version of heapq.nsmallest(). by Raymond Hettinger · 20 years ago
  42. c929766 Install C version of heapq.nlargest(). by Raymond Hettinger · 20 years ago
  43. 2adf210 Ensure path is initialized to prevent freeing random memory by Neal Norwitz · 20 years ago
  44. 737ea82 Patch #774665: Make Python LC_NUMERIC agnostic. by Martin v. Löwis · 20 years ago
  45. 604c013 SF 952807: Unpickling pickled instances of subclasses of datetime.date, by Tim Peters · 20 years ago
  46. 9665271 Plug a few memory leaks in utime(). path is allocated from within by Neal Norwitz · 20 years ago
  47. fe92eef Valgrind was reporting an uninitialized read for bad input. by Neal Norwitz · 20 years ago
  48. 1afd480 Fix for #932977: MacOSX does not pass the whole pathname in argv[0] for by Jack Jansen · 20 years ago
  49. 77ca6c4 Warn abou missing mutate flag to ioctl. Fixes #696535. by Martin v. Löwis · 20 years ago
  50. 558d9bf Patch #929192: Improvements to bluetooth support. by Martin v. Löwis · 20 years ago
  51. 5ededdd Remove pcre module by Andrew M. Kuchling · 20 years ago
  52. 974ed7c - SF #962502: Add two more methods for unicode type; width() and by Hye-Shik Chang · 20 years ago
  53. 04697e8 Patch #924294: Do not check for AF_INET6 if it is not defined. by Martin v. Löwis · 20 years ago
  54. d894872 Patch #954115: Fix os.stat handling of UNC roots. Will backport to 2.3. by Martin v. Löwis · 20 years ago
  55. 027bb63 Add weakref support to sockets and re pattern objects. by Raymond Hettinger · 20 years ago
  56. cb87bc8 Add weakref support to array.array and file objects. by Raymond Hettinger · 20 years ago
  57. 691d805 Make sets and deques weak referencable. by Raymond Hettinger · 20 years ago
  58. 76b8cc8 Band-aid type fix for by Michael W. Hudson · 20 years ago
  59. 79cddc5 stupid, stupid, stupid... raw_input() already supports readline() if the by Skip Montanaro · 20 years ago
  60. 0dc2310 Exposed readline() function from the readline module. by Skip Montanaro · 20 years ago
  61. 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
  62. 354433a SF patch #872326: Generator expression implementation by Raymond Hettinger · 20 years ago
  63. 285cfcc Make type check work with subclasses by Raymond Hettinger · 20 years ago
  64. 0e371f2 Make sure "del d[n]" is properly supported. Was necessary because the by Raymond Hettinger · 20 years ago
  65. 23164a5 In order to fix SF bug # 824977, we replace calloc()/free() calls in by Barry Warsaw · 20 years ago
  66. fd0283e SF #832236: merge from release23-maint branch: wrap a bunch of by Greg Ward · 20 years ago
  67. 9d7c870 SF #950057: itertools.chain doesn't "process" exceptions as they occur by Raymond Hettinger · 20 years ago
  68. 7d9c6c7 Fix _sre.CODESIZE on 64-bit machines in UCS-4 mode. Fixes #931848. by Martin v. Löwis · 20 years ago
  69. 2d5914b Fix [ 947405 ] os.utime() raises bad exception for unicode filenames by Mark Hammond · 20 years ago
  70. ce97fbe Correct the file name of _heapq module. by Hye-Shik Chang · 20 years ago
  71. 1660e0c * Restore the pure python version of heapq.py. by Raymond Hettinger · 20 years ago
  72. c46cb2a * Restore the pure python version of heapq.py. by Raymond Hettinger · 20 years ago
  73. 61e40bd Special case normalization of empty strings. Fixes #924361. Backported to 2.3. by Martin v. Löwis · 20 years ago
  74. 0046839 Change two instance of format strings for PyString_FromFormat() to use %ld by Brett Cannon · 20 years ago
  75. 7892b1c * Add unittests for iterators that report their length by Raymond Hettinger · 20 years ago
  76. daedf21 Fixes for AF_UNIX support on OS/2: by Andrew MacIntyre · 20 years ago
  77. 7dacda2 Provide more information representations of repeat() and count(). by Raymond Hettinger · 20 years ago
  78. d12dfbb OS/2's TCP/IP stack supports AF_UNIX sockets, with the limitation that by Andrew MacIntyre · 21 years ago
  79. 69e18c9 OS/2 has support for spawnvp() and spawnvpe() in the C libraries supplied by Andrew MacIntyre · 21 years ago
  80. da4d6cb OS/2 VACPP build updates/fixes by Andrew MacIntyre · 21 years ago
  81. 2786d90 A few more PyThreadState_Get to PyThreadState_GET conversions by Nicholas Bastin · 21 years ago
  82. e5662ae Changed random calls to PyThreadState_Get() to use the macro by Nicholas Bastin · 21 years ago
  83. 06c3479 Make socket.sslerror a subclass of socket.error . by Brett Cannon · 21 years ago
  84. 77d9a3e Patch #871657: Set EDOM for `nan' return values on FreeBSD and OpenBSD. by Hye-Shik Chang · 21 years ago
  85. e62c5c8 Added configure check for broken poll() on some unix systems (MacOS X 10.3) by Nicholas Bastin · 21 years ago
  86. 3f60629 SF bug 847019 datetime.datetime initialization needs more strict checking by Tim Peters · 21 years ago
  87. c3a87b8 Bug #920575: Add a workaround for GNU libc nl_langinfo()'s returning NULL. by Hye-Shik Chang · 21 years ago
  88. 1e5809f Improve deque iteration. by Raymond Hettinger · 21 years ago
  89. 0faa1ca Speedup the inner loops for dropwhile(), islice(), ifilter(), and by Raymond Hettinger · 21 years ago
  90. 0c65771 fixes SF bug 914019 - DB.has_key was not honoring its txn argument by Gregory P. Smith · 21 years ago
  91. 49f9bd1 SF feature request #686323: Minor array module enhancements by Raymond Hettinger · 21 years ago
  92. 6e2ee86 Update the array overallocation scheme to match the approach used for by Raymond Hettinger · 21 years ago
  93. 3aa82c0 SF bug #910986: copy.copy fails for array.array by Raymond Hettinger · 21 years ago
  94. 6ec0996 SF patch #907403: Improvements to cStringIO.writelines() by Raymond Hettinger · 21 years ago
  95. 6c79a51 Special case endpoint access for speed. by Raymond Hettinger · 21 years ago
  96. d1080a3 Have strftime() check its time tuple argument to make sure the tuple's values by Brett Cannon · 21 years ago
  97. 0a4977c Replace left(), right(), and __reversed__() with the more general purpose by Raymond Hettinger · 21 years ago
  98. 786ea6b Add pystack definition to Misc/gdbinit with some explanation of its behavior by Skip Montanaro · 21 years ago
  99. 87f1013 Make deque_type static so namespace is not polluted. by Neal Norwitz · 21 years ago
  100. 738ec90 Improvements to collections.deque(): by Raymond Hettinger · 21 years ago