1. 28e0873 #2719: backport next() from 3k. by Georg Brandl · 16 years ago
  2. 46d6b68 Typo fix by Andrew M. Kuchling · 16 years ago
  3. 48f6276 Add Rodrigo and Heiko. by Martin v. Löwis · 16 years ago
  4. a692c4d Added PyErr_WarnPy3k function. (issue 2671) I will be converting current Py3k warnings to the use of this function soon. by Benjamin Peterson · 16 years ago
  5. fe536f5 Issue 2635: fix bug in the fix_sentence_endings option to textwrap.fill. by Mark Dickinson · 16 years ago
  6. 6513466 Issue #1496032. Add -mieee to BASECFLAGS on alpha, when gcc is by Mark Dickinson · 16 years ago
  7. 6ad5fbb Add from_buffer and from_buffer_copy class methods to ctypes types. by Thomas Heller · 16 years ago
  8. 2b0bea5 Fix typo (now -> no) by Neal Norwitz · 16 years ago
  9. bf027c4 Remove cyclic reference in CFuncPtr instances; see issue #2682. by Thomas Heller · 16 years ago
  10. 5216721 Issue2681: the literal 0o8 was wrongly accepted, and evaluated as float(0.0). by Amaury Forgeot d'Arc · 16 years ago
  11. 11034c6 Add Jesus Cea. by Martin v. Löwis · 16 years ago
  12. 5169891 Add Guilherme Polo. by Martin v. Löwis · 16 years ago
  13. 9686585 Issue #2670: urllib2.build_opener() failed when two handlers by Amaury Forgeot d'Arc · 16 years ago
  14. d59fefb update the getpass entry by Gregory P. Smith · 16 years ago
  15. 8e0319d Add Thomas Lee by Neal Norwitz · 16 years ago
  16. 41e3018 If sys.stdin is not a tty, fall back to default_getpass after printing by Gregory P. Smith · 16 years ago
  17. e74c8f2 Added kill, terminate and send_signal to subprocess.Popen by Christian Heimes · 16 years ago
  18. 6f34109 I finally got the time to update and merge Mark's and my trunk-math branch. The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of loose ends and edge cases related to operations with NaN, INF, very small values and complex math. by Christian Heimes · 16 years ago
  19. b131f04 resolve issue 2014 by Skip Montanaro · 16 years ago
  20. 106fc48 Issue 2439: add pkgutils.get_data() as a convenience wrapper for the PEP 302 get_data() API (contributed by Paul Moore) by Nick Coghlan · 16 years ago
  21. 046e6a4 Issue #2616: Implement ctypes.pointer() and ctypes.POINTER() in C for by Thomas Heller · 16 years ago
  22. e974689 Re-implement the 'warnings' module in C. This allows for usage of the by Brett Cannon · 17 years ago
  23. a93eaa5 Add Jeroen. by Georg Brandl · 17 years ago
  24. 7a98d27 Applied patch #2617 from Frank Wierzbicki wit some extras from me by Christian Heimes · 17 years ago
  25. 671c5d9 Add a note about the zlib.decompressobj().flush() fix. by Gregory P. Smith · 17 years ago
  26. e41b006 - Issue #2550: The approach used by client/server code for obtaining ports by Trent Nelson · 17 years ago
  27. 02f33b4 Add a NEWS entry for previous checkin by Amaury Forgeot d'Arc · 17 years ago
  28. 495cf99 Issue #2513: enable 64bit cross compilation on windows. by Mark Hammond · 17 years ago
  29. aa63d0d Make file objects as thread safe as the underlying libc FILE* implementation. by Gregory P. Smith · 17 years ago
  30. f790648 News entry for: Sync with files from the just released libffi 3.0.5 version. by Thomas Heller · 17 years ago
  31. dc96a77 Issue #2544: On HP-UX systems, use 'gcc -shared' for linking when gcc by Thomas Heller · 17 years ago
  32. 46c58c1 - Issue #2385: distutils.core.run_script() makes __file__ available, so the by Fred Drake · 17 years ago
  33. ba43774 post release updates by Barry Warsaw · 17 years ago
  34. d7a2651 #1733757: the interpreter would hang on shutdown, if the function set by sys.settrace by Amaury Forgeot d'Arc · 17 years ago
  35. 9649cdd Updating for 2.6a2 by Barry Warsaw · 17 years ago
  36. b7edfc4 Added updates with respect to recent changes to TimedRotatingFileHandler. by Vinay Sajip · 17 years ago
  37. 91e0cda Backport #1442: report exception when startup file cannot be run. by Georg Brandl · 17 years ago
  38. 69b747b Fix a reference leak found by Georg, when compiling a class nested in another class. by Amaury Forgeot d'Arc · 17 years ago
  39. fc8eef3 Patch #1810 by Thomas Lee, reviewed by myself: by Georg Brandl · 17 years ago
  40. b980342 Accept patch issue2426 by Paul Kippes (kippesp). by Gregory P. Smith · 17 years ago
  41. da0c025 Issue2495: tokenize.untokenize did not insert space between two consecutive string literals: by Amaury Forgeot d'Arc · 17 years ago
  42. deaf2ca #2248: return result of QUIT from quit(). by Georg Brandl · 17 years ago
  43. 8113586 add commas for introductory clauses by Benjamin Peterson · 17 years ago
  44. 3c60833 Patch #2477: Added from __future__ import unicode_literals by Christian Heimes · 17 years ago
  45. 8c78cc3 Updated Misc/NEWS by Christian Heimes · 17 years ago
  46. 7ddd10d Add Josiah. by Georg Brandl · 17 years ago
  47. da868d6 Opps! I merged the revisions, but forgot to add the header to ACKS by Benjamin Peterson · 17 years ago
  48. 6f7e71d Merged the ACKS from py3k by Benjamin Peterson · 17 years ago
  49. 8e85ffa Issue #2482: Make sure that the coefficient of a Decimal by Mark Dickinson · 17 years ago
  50. cdde579 Add Benjamin. by Georg Brandl · 17 years ago
  51. 3b24ccb Issue #2478: Decimal(sqrt(0)) failed when the decimal context by Mark Dickinson · 17 years ago
  52. 1e7c375 #2359: add Py3k warning for array.read/array.write. by Georg Brandl · 17 years ago
  53. 80055f6 #2355: py3k warning for buffer(). by Georg Brandl · 17 years ago
  54. aef18b1 Patch #2240: Implement signal.setitimer and signal.getitimer. by Martin v. Löwis · 17 years ago
  55. cdbc977 Install 2to3 script. by Martin v. Löwis · 17 years ago
  56. b72233c Issue 2460: Make Ellipsis objects copyable. by Raymond Hettinger · 17 years ago
  57. bbc50ea Issue 1681432: Add triangular distribution the random module. by Raymond Hettinger · 17 years ago
  58. 9a0d346 #1477: ur'\U0010FFFF' raised in narrow unicode builds. by Amaury Forgeot d'Arc · 17 years ago
  59. 0e9ab5f Applied patch #1657 epoll and kqueue wrappers for the select module by Christian Heimes · 17 years ago
  60. 65bb42d #2348: add py3k warning for file.softspace. by Georg Brandl · 17 years ago
  61. 07e5681 #2346/#2347: add py3k warning for __methods__ and __members__. Patch by Jack Diederich. by Georg Brandl · 17 years ago
  62. 5a44424 #2358: add py3k warning to sys.exc_clear(). by Georg Brandl · 17 years ago
  63. 77354cf Issue #2432: give DictReader the dialect and line_num attributes by Georg Brandl · 17 years ago
  64. 3312432 #2136: allow single quotes in realm spec. by Georg Brandl · 17 years ago
  65. a186775 Add news items for platform module changes. by Marc-André Lemburg · 17 years ago
  66. fa6a8b3 Gave Jerry Seutter svn access for general Python development. by Brett Cannon · 17 years ago
  67. 68fa8e6 Forgot to add NEWS item about smtplib SSL readline hang fix. by Sean Reifscheider · 17 years ago
  68. 7919d98 test_nis would fail if test.test_support.verbose was true but NIS was not set by Brett Cannon · 17 years ago
  69. 5e37bae Import lib2to3. by Martin v. Löwis · 17 years ago
  70. a4d7789 Issue #2400: Allow relative imports to "import *". by Martin v. Löwis · 17 years ago
  71. fbe7c55 Added my name to ACKS by David Wolever · 17 years ago
  72. 0279f43 Add Jeff Rush by Andrew M. Kuchling · 17 years ago
  73. 7c47894 Backport of the print function, using a __future__ import. by Eric Smith · 17 years ago
  74. 37f3f43 news entry for the chown fix by Gregory P. Smith · 17 years ago
  75. 493894c Issue 1577: shutil.move() where destination is a directory was doing a by Sean Reifscheider · 17 years ago
  76. b1d3d96 Issue 2332: add new attribute names for instance method objects by Neal Norwitz · 17 years ago
  77. 6d91be3 - Issue 2379: Raise a Py3K warning for __getitem__ or __getslice__ on by Guido van Rossum · 17 years ago
  78. 504153d Issue #2341: Add a Py3k warning when raising an exception that doesn't by Guido van Rossum · 17 years ago
  79. a5573b3 The output directory for tests that compare against stdout is now gone! by Brett Cannon · 17 years ago
  80. aa5778d Remove our implementation of memmove() and strerror(); both are in the C89 by Brett Cannon · 17 years ago
  81. b7ec8e5 test_errno was a no-op test; now it actually tests things and uses unittest. by Brett Cannon · 17 years ago
  82. 04edb52 - Issue #2371: Add a Py3k warning when catching an exception that by Guido van Rossum · 17 years ago
  83. 0bb7950 Move test_extcall to doctest. by Brett Cannon · 17 years ago
  84. ba17cfc Convert test_dummy_threading and test_dbm to unittest. by Brett Cannon · 17 years ago
  85. 6eeaddc Convert test_strftime, test_getargs, and test_pep247 to use unittest. by Brett Cannon · 17 years ago
  86. a7d57cd Add David Wolever. by Martin v. Löwis · 17 years ago
  87. 419fd49 Issue 2321: reduce memory usage (increase the memory that is returned by Neal Norwitz · 17 years ago
  88. 0aed07a Added PEP 3127 support to tokenize (with tests); added PEP 3127 to NEWS. by Eric Smith · 17 years ago
  89. f48f9d3 Force zlib.crc32 and zlib.adler32 to return a signed integer on all platforms by Gregory P. Smith · 17 years ago
  90. 7cfbf0c Add Trent Nelson. by Martin v. Löwis · 17 years ago
  91. 1b4e45b Allow Gnu gcc's to build python on OSX by removing -Wno-long-double, by Jeffrey Yasskin · 17 years ago
  92. 400aeda Add a warning for code like: assert (0, 'message') by Neal Norwitz · 17 years ago
  93. 32ed8c2 . by Skip Montanaro · 17 years ago
  94. c23b8a7 Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently by Mark Dickinson · 17 years ago
  95. bf7b0b7 Patch #2284: add -x64 option to rt.bat. by Martin v. Löwis · 17 years ago
  96. 1f5182b Convert test_fcntl to unittest. by Brett Cannon · 17 years ago
  97. 4a6e8d6 Move test_gdbm to use unittest. by Brett Cannon · 17 years ago
  98. 2e0f9f3 Convert test_contains, test_crypt, and test_select to unittest. by Brett Cannon · 17 years ago
  99. b8d3735 Move test_tokenize to doctest. by Brett Cannon · 17 years ago
  100. 66865d2 Move test_thread over to unittest. Commits GHOP 237. by Brett Cannon · 17 years ago