1. 0c65771 fixes SF bug 914019 - DB.has_key was not honoring its txn argument by Gregory P. Smith · 20 years ago
  2. 6e4620b 1. Make builtin foreground Royal Purple instead of Barney Purple. by Kurt B. Kaiser · 20 years ago
  3. 9d5c443 Fix typos and add some elaborations by Raymond Hettinger · 20 years ago
  4. cd1e8a9 Port test_binascii.py to PyUnit and enhance tests. by Walter Dörwald · 20 years ago
  5. d4ff741 Revert last change. Found an application that was worse off with resize by Raymond Hettinger · 20 years ago
  6. 0bc3d98 1. Bug in Patch 805830 fixed by Nigel Rowe by Kurt B. Kaiser · 20 years ago
  7. 325d169 Eliminate an unnecessary test on a common code path. by Raymond Hettinger · 20 years ago
  8. deb4da5 Add missing docstrings. by Raymond Hettinger · 20 years ago
  9. 0e91643 list_resize() now has an "exact" option for bypassing the overallocation by Raymond Hettinger · 20 years ago
  10. 49f9bd1 SF feature request #686323: Minor array module enhancements by Raymond Hettinger · 20 years ago
  11. 6e2ee86 Update the array overallocation scheme to match the approach used for by Raymond Hettinger · 20 years ago
  12. 118e127 Two issues spotted by Ronald OUssoren: by Jack Jansen · 20 years ago
  13. c32cec1 Don't use "dict" as a variable, it shadows the builtin. Spotted by Bob Ippolito. by Jack Jansen · 20 years ago
  14. 6e098a1 compile.h and eval.h weren't being included which kept a fair bit of the by Skip Montanaro · 20 years ago
  15. 0576d0a Force option should be applied to a single package, not recursively by Jack Jansen · 20 years ago
  16. 4eec95a SF patch #906501: Fix typos in pystate.h comments by Raymond Hettinger · 20 years ago
  17. 2d95f1a SF patch #911431: robot.txt must be robots.txt (Contributed by George Yoshida.) by Raymond Hettinger · 20 years ago
  18. 3aa82c0 SF bug #910986: copy.copy fails for array.array by Raymond Hettinger · 20 years ago
  19. 42bec93 Make PySequence_Fast_ITEMS public. (Thanks Skip.) by Raymond Hettinger · 20 years ago
  20. fba1cfc LIST_APPEND is predicably followed by JUMP_ABSOLUTE. by Raymond Hettinger · 20 years ago
  21. 6e058d7 * Eliminate duplicate call to PyObject_Size(). (Spotted by Michael Hudson.) by Raymond Hettinger · 20 years ago
  22. 2d783e9 Move the code for BREAK and CONTINUE_LOOP to be near FOR_ITER. by Raymond Hettinger · 20 years ago
  23. db0de9e Speedup for-loops by inlining PyIter_Next(). Saves duplicate tests by Raymond Hettinger · 20 years ago
  24. c1e4f9d Use a new macro, PySequence_Fast_ITEMS to factor out code common to by Raymond Hettinger · 20 years ago
  25. 989ddc0 - Added a downloader using urllib2 in stead of curl, based on code by Jack Jansen · 20 years ago
  26. 57c4542 Now that list.extend() is at the root of many list operations, it becomes by Raymond Hettinger · 20 years ago
  27. 8ca92ae Eliminate a big block of duplicate code in PySequence_List() by by Raymond Hettinger · 20 years ago
  28. 97bc618 list_inplace_concat() is now expressed in terms of list_extend() which by Raymond Hettinger · 20 years ago
  29. 4252a7a Make buffer objects based on mutable objects (like array) safe. by Neil Schemenauer · 20 years ago
  30. 0eadcd9 Document one of the many problems with the buffer object. by Neil Schemenauer · 20 years ago
  31. 5e3a675 Rename static functions, they should not have the _Py prefix. by Neil Schemenauer · 20 years ago
  32. 6cbba50 Make test_coercion.py less sensitive to platform fp quirks. Closes by Neil Schemenauer · 20 years ago
  33. 66d31f8 Use memcpy() instead of memmove() when the buffers are known to be distinct. by Raymond Hettinger · 20 years ago
  34. ef9bf40 Tidied up the implementations of reversed (including the custom ones by Raymond Hettinger · 20 years ago
  35. d2c3626 Eliminate the double reverse option. It's only use case by Raymond Hettinger · 20 years ago
  36. a6366fe Optimize inner loops for subscript, repeat, and concat. by Raymond Hettinger · 20 years ago
  37. f889e10 Optimize slice assignments. by Raymond Hettinger · 20 years ago
  38. 9168c70 SF Patch #912462: Relocate \end tag to the right place. by Hye-Shik Chang · 20 years ago
  39. f114a3a Refactor and optimize code for UNPACK_SEQUENCE. by Raymond Hettinger · 20 years ago
  40. 4b6b7f1 Remove calls to currentThread() in _Condition methods that were side-effect. by Brett Cannon · 20 years ago
  41. 3fd500b The copy module now handles sets directly. The __copy__ methods are no by Raymond Hettinger · 20 years ago
  42. 3e47f65 SF patch #907403: Improvements to cStringIO.writelines() by Raymond Hettinger · 20 years ago
  43. 6ec0996 SF patch #907403: Improvements to cStringIO.writelines() by Raymond Hettinger · 20 years ago
  44. 73360a3 Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe by Kurt B. Kaiser · 20 years ago
  45. 4102478 Removed spurious import statement by Vinay Sajip · 20 years ago
  46. b7d05db Optimize tuple_slice() and make further improvements to list_slice() by Raymond Hettinger · 20 years ago
  47. f0e3569 Refactor the copy dispatcher code in copy.py. Simplifies and shortens by Raymond Hettinger · 20 years ago
  48. 99842b6 Small optimizations for list_slice() and list_extend_internal(). by Raymond Hettinger · 20 years ago
  49. ebedb2f Factor out code common to PyDict_Copy() and PyDict_Merge(). by Raymond Hettinger · 20 years ago
  50. 8172ac3 Deal with possible case of having time.tzname[1] containing UTC or GMT. by Brett Cannon · 20 years ago
  51. dd80f76 SF patch #910929: Optimize list comprehensions by Raymond Hettinger · 20 years ago
  52. bff63f0 update version at top of file by Skip Montanaro · 20 years ago
  53. 31017ae SF #904720: dict.update should take a 2-tuple sequence like dict.__init_ by Raymond Hettinger · 20 years ago
  54. 6c79a51 Special case endpoint access for speed. by Raymond Hettinger · 20 years ago
  55. 30e97db SF Patch #902444: Use process scope thread on FreeBSD. System scope by Hye-Shik Chang · 20 years ago
  56. e2b61e0 * explain flags in doc strings by Skip Montanaro · 20 years ago
  57. 47db165 Fixed invalid syntax. by Sjoerd Mullender · 20 years ago
  58. 6babcc2 typo by Skip Montanaro · 20 years ago
  59. 35c62e5 Added license notices that are required to be included in the by Raymond Hettinger · 20 years ago
  60. d1080a3 Have strftime() check its time tuple argument to make sure the tuple's values by Brett Cannon · 20 years ago
  61. 0a4977c Replace left(), right(), and __reversed__() with the more general purpose by Raymond Hettinger · 20 years ago
  62. 786ea6b Add pystack definition to Misc/gdbinit with some explanation of its behavior by Skip Montanaro · 20 years ago
  63. 87f1013 Make deque_type static so namespace is not polluted. by Neal Norwitz · 20 years ago
  64. 9a8d55e Cleanup: remove test file after it is used. by Neal Norwitz · 20 years ago
  65. 738ec90 Improvements to collections.deque(): by Raymond Hettinger · 20 years ago
  66. fe99927 - Allow easy opening of experimental database, if pimp >= 0.4 by Jack Jansen · 20 years ago
  67. 192bd96 getDefaultDatabase() should be a toplevel function, not a method of the by Jack Jansen · 20 years ago
  68. afd63b9 Started on version 0.4: better scheme for finding correct database: by Jack Jansen · 20 years ago
  69. 3f74284 Minor documentation changes by Vinay Sajip · 20 years ago
  70. fb0521f Use versionadded for new features by Neal Norwitz · 20 years ago
  71. a9208f1 Get rid of unused variable by Neal Norwitz · 20 years ago
  72. 3e0877e Add version changed/added to doc by Neal Norwitz · 20 years ago
  73. bc72c5a Speed-up the joiner call by avoiding Py_BuildValue(). by Raymond Hettinger · 20 years ago
  74. 2460c62 made cPickle fall back to the copy_reg/reduce protocol, by Christian Tismer · 20 years ago
  75. d594849 Ignore sizehint argument. Fixes SF #844561. by Marc-André Lemburg · 20 years ago
  76. 6bee23c Oops, didn't mean to commit the removal of float_compare! by Michael W. Hudson · 20 years ago
  77. 957f977 Pass a variable that actually exists to PyFPE_END_PROTECT in by Michael W. Hudson · 20 years ago
  78. a7befda Fixes SF bug # 778421 by Gregory P. Smith · 20 years ago
  79. 904de5b Make _spawn_posix be ready for EINTR. waitpid(2) can be interrupted by Hye-Shik Chang · 20 years ago
  80. e7e9bf2 kLsUnknownType and kLSUnknownCreator were ints in stead of OSTypes. by Jack Jansen · 20 years ago
  81. 49be4cc Setup file to allow the QuickTime for 2.4 to be compiled by Jack Jansen · 20 years ago
  82. 59e02c1 fix typo in reference to RFC 3464 DSN MIME type by Fred Drake · 20 years ago
  83. b3ee6f9 Fix two bugs in the new do_open() implementation for HTTPHandler. by Jeremy Hylton · 20 years ago
  84. f0ae427 fix English usage error reported by Ken Fuchs by Fred Drake · 20 years ago
  85. 2b55d35 Reflow long line. by Jeremy Hylton · 20 years ago
  86. 361d66d Fix wrong character mapping in koi8_u: SF bug #902501. by Marc-André Lemburg · 20 years ago
  87. f42d95e Added close() (which flushes) to BufferingHandler and tidied MemoryHandler.close() [SF #901330] by Vinay Sajip · 20 years ago
  88. 3f9f84d Handler close() functions call flush() [SF #901330] by Vinay Sajip · 20 years ago
  89. 8036c83 adding passing test. testing for g(*Nothing()) where Nothing is a user-defined iterator. by Samuele Pedroni · 20 years ago
  90. 0bc9c91 Use the right wininstXX.exe, depending on msvccompiler.get_build_version(). by Thomas Heller · 20 years ago
  91. 612371d wininst-6.exe and wininst-7.1.exe are in CVS, so that they can be by Thomas Heller · 20 years ago
  92. 90b0f1c wininst.exe is no longer used - we now need wininst-6.exe or wininst-7.1.exe. by Thomas Heller · 20 years ago
  93. 6837f65 Solution and project file to build wininstXX.exe with MSVC7.1 (Visual by Thomas Heller · 20 years ago
  94. cad71d0 To avoid problems with conflicting dlls, the windows installers built by Thomas Heller · 20 years ago
  95. 4ae4f83 Recompiled the binary wininst.exe. by Thomas Heller · 20 years ago
  96. a19cdad Patch #892660 from Mark Hammond, for distutils bdist_wininst command. by Thomas Heller · 20 years ago
  97. bb99058 Socket handler closed prior to end of test. by Vinay Sajip · 20 years ago
  98. ed6bb14 Copyright year & version number/version date changes. by Vinay Sajip · 20 years ago
  99. 48cfe38 Copyright year change. by Vinay Sajip · 20 years ago
  100. 326441e Copyright year change. Corrections to comments. Added RESET_ERROR definition. by Vinay Sajip · 20 years ago