1. b436a24 Fix compilation on Windows. by Thomas Heller · 16 years ago
  2. 9da18b3 Fixing the problem stated in issue 2702 with the patch submitted by Facundo Batista · 16 years ago
  3. ac0c381 Expand docstrings of sqlite3 functions. by Georg Brandl · 16 years ago
  4. 1461886 Issue 3164. Small fix to don't repeat a comparation without necessity. by Facundo Batista · 16 years ago
  5. 5596b0c Issue #2722. Now the char buffer to support the path string has by Facundo Batista · 16 years ago
  6. 2fcd8c9 Fix another typo in math_sum comment by Mark Dickinson · 16 years ago
  7. 5f198be Fix comment typos by Andrew M. Kuchling · 16 years ago
  8. 3d8f8c1 Only include update_lines_cols() function when it's actually going to be used by Andrew M. Kuchling · 16 years ago
  9. 2281da4 Fix double decref. by Raymond Hettinger · 16 years ago
  10. fb1c4b9 Issue 3118: make test_math pass on Ubuntu/ia64. exp(-745.0) was raising by Mark Dickinson · 16 years ago
  11. d25cdc3 on windows, r64214 broke compilation with some recent SDKs, by Amaury Forgeot d'Arc · 16 years ago
  12. dfd7949 convert multiprocessing to unix line endings by Benjamin Peterson · 16 years ago
  13. 111c180 Make more symbols static. by Martin v. Löwis · 16 years ago
  14. e1f6646 Typo. by Georg Brandl · 16 years ago
  15. 6d53e7e #3095: don't leak values from Py_BuildValue. by Georg Brandl · 16 years ago
  16. 705cd06 Fix some memory dealloc problems when exceptions occur. by Neal Norwitz · 16 years ago
  17. e9ee44c Check for memory alloc failure by Neal Norwitz · 16 years ago
  18. a4dd2e2 Restore support for Microsoft VC6 compiler. by Amaury Forgeot d'Arc · 16 years ago
  19. 114f7e5 #1683 prevent forking from interfering in threading storage by Benjamin Peterson · 16 years ago
  20. 89f4887 Add future_builtins.ascii(). by Georg Brandl · 16 years ago
  21. 6fbfb48 Optimize previous checkin for heapq. by Raymond Hettinger · 16 years ago
  22. f0bc3cb Issue 3051: Let heapq work with either __lt__ or __le__. by Raymond Hettinger · 16 years ago
  23. 9d53457 Merge in release25-maint r60793: by Gregory P. Smith · 16 years ago
  24. 190d56e add the multiprocessing package to fulfill PEP 371 by Benjamin Peterson · 16 years ago
  25. 99a3dce More reverting of r63675 per the mailing list discussions. This restores by Gregory P. Smith · 16 years ago
  26. dcea9a9 Add an optional 'offset' parameter to byref, defaultingto zero. by Thomas Heller · 16 years ago
  27. 8550d69 #2536: fix itertools.permutations and itertools.combinations docstrings. by Georg Brandl · 16 years ago
  28. d623414 Unhappy buildbots. Revert 64052. Long doubles have unexpected effects on some builds. by Raymond Hettinger · 16 years ago
  29. 7b1ed66 Address double-rounding scenarios by setting all variables to long doubles. by Raymond Hettinger · 16 years ago
  30. ecbdd2e Issue #2138: Add math.factorial(). by Raymond Hettinger · 16 years ago
  31. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  32. 0144f27 Remove locking part of new buffer protocol. by Travis E. Oliphant · 16 years ago
  33. ec2fe78 Issue 3501: Make heapq support both __le__ and __lt__. by Raymond Hettinger · 16 years ago
  34. f89b04c Performance improvement: Use PyDict_Get/SetItem instead of by Thomas Heller · 16 years ago
  35. fbb9c0b Issue #1798: Add ctypes calling convention that allows safe access of errno. by Thomas Heller · 16 years ago
  36. 2e75c45 Backport from py3k: Implement the new buffer interface from pep3118 by Thomas Heller · 16 years ago
  37. 5640ce2 MacOS X: Enable 4-way universal builds by Ronald Oussoren · 16 years ago
  38. d5bb921 Revert revisions 63943 and 63942 (Issue #1798: Add ctypes calling by Thomas Heller · 16 years ago
  39. 8f22b88 Fix ctypes.set_errno for gcc. by Thomas Heller · 16 years ago
  40. e70c337 Issue #1798: Add ctypes calling convention that allows safe access to by Thomas Heller · 16 years ago
  41. a2a89a8 Change all functions that expect one unicode character to accept a pair of by Walter Dörwald · 16 years ago
  42. de2d78a Fix misspelled sys.platform name and misspelled filename. by Thomas Heller · 16 years ago
  43. 137d824 Fix issue 2782: be less strict about the format string type in strftime. by Gregory P. Smith · 16 years ago
  44. 9981589 New environment variable PYTHONIOENCODING. by Martin v. Löwis · 16 years ago
  45. 7f7ca35 Fixed rowcount for SELECT statements. They're -1 now (again), for better DB-API 2.0 compliance. by Gerhard Häring · 16 years ago
  46. 6d7702e Implement heapq in terms of less-than (to match list.sort()). by Raymond Hettinger · 16 years ago
  47. ef712d6 * Mark intermedidate computes values (hi, lo, yr) as volatile. by Raymond Hettinger · 16 years ago
  48. 9287acf ctypes NULL function pointers have a boolean False value now. by Thomas Heller · 16 years ago
  49. a52b244 Fix compiler warning. by Thomas Heller · 16 years ago
  50. 2a9179a Fix two typos. by Raymond Hettinger · 16 years ago
  51. 572226c Define macros so that this still compiles on Python prior to r63675. by Gregory P. Smith · 16 years ago
  52. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  53. 8c255e4 Patch #1722225: Support QNX 6. by Martin v. Löwis · 16 years ago
  54. 778d5cc Tweak the comments and formatting. by Raymond Hettinger · 16 years ago
  55. 99dfe92 Issue #2819: Add math.sum, a function that sums a sequence of floats by Mark Dickinson · 16 years ago
  56. ca3939c bsddb module updated to version 4.7.0 by Jesus Cea · 16 years ago
  57. 03b75dd On HPUX, -fPIC must be used for linking. _ctypes now builds on HP-UX by Thomas Heller · 16 years ago
  58. dffbf5f Revert copy_reg -> copyreg rename. by Georg Brandl · 16 years ago
  59. 664782e issue2858: Fix potential memory corruption when bsddb.db.DBEnv.lock_get by Gregory P. Smith · 16 years ago
  60. 3c4971c Added Python 3.0 warning to cPickle. by Alexandre Vassalotti · 16 years ago
  61. 5049a85 #2890: support os.O_ASYNC and fcntl.FASYNC. by Georg Brandl · 16 years ago
  62. ca21c65 Following Amaury's advice by Christian Heimes · 16 years ago
  63. 0bd23c0 Fixed #2870: cmathmodule.c compile error by Christian Heimes · 16 years ago
  64. 2224817 Deprecate sunaudiodev/SUNAUDIODEV for removal in 3.0. by Brett Cannon · 16 years ago
  65. 4652537 Deprecate imgfile for removal in 3.0. by Brett Cannon · 16 years ago
  66. 75ba465 Deprecated 'fm' for removal in 3.0. by Brett Cannon · 16 years ago
  67. 178582e FL, flp, and fl from IRIX have been deprecated for removal in 3.0. by Brett Cannon · 16 years ago
  68. 044616a Deprecate DEVICE, GL, gl, and the related modules cgen and cgensupport for removal in 3.0. by Brett Cannon · 16 years ago
  69. 650f516 Deprecate CL, CL_old, and cl for 3.0. by Brett Cannon · 16 years ago
  70. ddf949f The CD and cd modules for IRIX are deprecated for 3.0. by Brett Cannon · 16 years ago
  71. 34721d5 Deprecate al/AL for removal in 3.0. by Brett Cannon · 16 years ago
  72. ef9764f bsddb module updated to version 4.6.4 by Jesus Cea · 16 years ago
  73. bb141bb Deprecate the timing module for removal in Python 3.0. by Brett Cannon · 16 years ago
  74. ac861b5 Deprecate the sv module as per PEP 4. by Brett Cannon · 16 years ago
  75. 42bfa90 Depreate imageop for removal in 3.0. by Brett Cannon · 16 years ago
  76. b61d801 Put Lib/lib-old back on to sys.path for module renames. by Brett Cannon · 16 years ago
  77. 6a57c08 #1326: document and test zipimporter.archive and zipimporter.prefix. by Georg Brandl · 16 years ago
  78. 9510e4a Added module stub for copy_reg renaming in 3.0. by Alexandre Vassalotti · 16 years ago
  79. 7595c1a Flesh out the 3.0 deprecation to suggest using the ctypes module. by Brett Cannon · 16 years ago
  80. df0a717 The linuxaudidev module has been deprecated for removal in Python 3.0. by Brett Cannon · 16 years ago
  81. 7f874fc Deprecate the dl module for removal in 3.0. by Brett Cannon · 16 years ago
  82. 768d44f Deprecate the bsddb185 module for removal in 3.0. by Brett Cannon · 16 years ago
  83. 9ac3974 Deprecate the pure module for 3.0. by Brett Cannon · 16 years ago
  84. 1aed624 Backport fast alternate io.BytesIO implementation. by Alexandre Vassalotti · 16 years ago
  85. f8476c1 Issue #2487. math.ldexp(x, n) raised OverflowError when n was large and by Mark Dickinson · 16 years ago
  86. af748c3 Implemented PEP 370 by Christian Heimes · 16 years ago
  87. c8a0d2f Intern static string by Christian Heimes · 16 years ago
  88. 4b964f9 Add the 'json' package. Code taken from simplejson 1.9 and contributed by Bob by Brett Cannon · 16 years ago
  89. e11c9b3 Implemented feature request 2157: Converter names are cut off at '(' by Gerhard Häring · 16 years ago
  90. 5a366c3 Applied sqliterow-richcmp.diff patch from Thomas Heller in Issue2152. The by Gerhard Häring · 16 years ago
  91. ffa3357 SQLite requires 64-bit integers in order to build. So the whole HAVE_LONG_LONG by Gerhard Häring · 16 years ago
  92. 8dc4303 Rename the test_traceback_print() function to traceback_print() to prevent by Brett Cannon · 16 years ago
  93. 141534e Fix a bug introduced by the warnings rewrite where tracebacks were being by Brett Cannon · 16 years ago
  94. f19a7b9 A little reformating of Py3k warnings by Benjamin Peterson · 16 years ago
  95. 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 16 years ago
  96. a6b79f3 Add missing return type to dealloc. by Georg Brandl · 16 years ago
  97. 6ad5fbb Add from_buffer and from_buffer_copy class methods to ctypes types. by Thomas Heller · 16 years ago
  98. bf027c4 Remove cyclic reference in CFuncPtr instances; see issue #2682. by Thomas Heller · 16 years ago
  99. 83c9201 Fix typo. by Martin v. Löwis · 16 years ago
  100. 0da94c8 Silence 'r may be used uninitialized' compiler warning. by Mark Dickinson · 16 years ago