- 30 May, 2008 6 kayıt (commit)
-
-
Eric Smith yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
it is guaranteed to return a new bytearray.
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
- 29 May, 2008 8 kayıt (commit)
-
-
Brett Cannon yazdı
........ r63800 | brett.cannon | 2008-05-29 14:28:55 -0700 (Thu, 29 May 2008) | 1 line Note that UserList and UserString were moved to 'collections' in 3.0. ........
-
Benjamin Peterson yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r63460 | ronald.oussoren | 2008-05-18 15:54:47 -0500 (Sun, 18 May 2008) | 6 lines - Add unittests for platform.mac_ver (or rather, ensure that the unittest for that function actually tests something on OSX). - Add documentation to platform.mac_ver that explains why the middle element of the return value will not contain useful information. ........ r63464 | benjamin.peterson | 2008-05-18 17:07:42 -0500 (Sun, 18 May 2008) | 2 lines fix test_platform (os was not imported) ........
-
Benjamin Peterson yazdı
........ r63460 | ronald.oussoren | 2008-05-18 15:54:47 -0500 (Sun, 18 May 2008) | 6 lines - Add unittests for platform.mac_ver (or rather, ensure that the unittest for that function actually tests something on OSX). - Add documentation to platform.mac_ver that explains why the middle element of the return value will not contain useful information. ........ r63464 | benjamin.peterson | 2008-05-18 17:07:42 -0500 (Sun, 18 May 2008) | 2 lines fix test_platform (os was not imported) ........
-
Benjamin Peterson yazdı
-
Thomas Heller yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r63791 | thomas.heller | 2008-05-29 21:18:12 +0200 (Do, 29 Mai 2008) | 1 line Fix compiler warning. ........ r63792 | thomas.heller | 2008-05-29 21:42:34 +0200 (Do, 29 Mai 2008) | 1 line ctypes NULL function pointers have a boolean False value now. ........
-
Georg Brandl yazdı
........ r63776 | georg.brandl | 2008-05-29 09:18:49 +0200 (Thu, 29 May 2008) | 2 lines #2906: accept lists for options, and some cosmetic fixes in Tkinter. ........
-
Georg Brandl yazdı
-
Brett Cannon yazdı
........ r63767 | brett.cannon | 2008-05-28 22:08:50 -0700 (Wed, 28 May 2008) | 4 lines UserString.MutableString has been removed in Python 3.0. Works on issue #2877. Thanks Quentin Gallet-Gilles for the patch. ........
-
- 28 May, 2008 2 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
Stop dbm from importing every dbm module when imported.
-
- 27 May, 2008 4 kayıt (commit)
-
-
Georg Brandl yazdı
-
Benjamin Peterson yazdı
........ r63738 | benjamin.peterson | 2008-05-26 20:42:29 -0500 (Mon, 26 May 2008) | 4 lines Improvements for test_py3kwarn - Always show warnings so they are always catchable - Make test_os_path_walk faster by walking a less populous directory ........
-
Benjamin Peterson yazdı
........ r63736 | benjamin.peterson | 2008-05-26 20:18:39 -0500 (Mon, 26 May 2008) | 2 lines remove some __getslice__ ........
-
Benjamin Peterson yazdı
-
- 26 May, 2008 20 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
-
Benjamin Peterson yazdı
........ r63725 | benjamin.peterson | 2008-05-26 15:41:45 -0500 (Mon, 26 May 2008) | 2 lines take Brett's advice on a few warnings ........
-
Benjamin Peterson yazdı
........ r63721 | benjamin.peterson | 2008-05-26 14:41:53 -0500 (Mon, 26 May 2008) | 2 lines warn about some members of the commands module ........
-
Benjamin Peterson yazdı
........ r63719 | benjamin.peterson | 2008-05-26 14:37:11 -0500 (Mon, 26 May 2008) | 2 lines wrap line ........
-
Benjamin Peterson yazdı
-
Brett Cannon yazdı
functions have been added to the subprocess module. The fixer for this still needs to be written and proper Py3K deprecation warnings for the functions that didn't make the transition need to be done in 2.6. This is all part of trying to close issue #2872.
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Benjamin Peterson yazdı
........ r63704 | benjamin.peterson | 2008-05-26 12:43:53 -0500 (Mon, 26 May 2008) | 2 lines turn PyErr_WarnPy3k into a macro ........
-
Georg Brandl yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r63542 | mark.dickinson | 2008-05-22 20:35:30 -0500 (Thu, 22 May 2008) | 5 lines Issue #2819: Add math.sum, a function that sums a sequence of floats efficiently but with no intermediate loss of precision. Based on Raymond Hettinger's ASPN recipe. Thanks Jean Brouwers for the patch. ........ r63543 | mark.dickinson | 2008-05-22 21:36:48 -0500 (Thu, 22 May 2008) | 2 lines Add tests for math.sum (Issue #2819) ........ r63544 | mark.dickinson | 2008-05-22 22:30:01 -0500 (Thu, 22 May 2008) | 2 lines Better error reporting in test_math.py ........ r63546 | raymond.hettinger | 2008-05-22 23:32:43 -0500 (Thu, 22 May 2008) | 1 line Tweak the comments and formatting. ........ r63553 | mark.dickinson | 2008-05-23 07:07:36 -0500 (Fri, 23 May 2008) | 3 lines Skip math.sum tests on non IEEE 754 platforms, and on IEEE 754 platforms that exhibit the problem described in issue #2937. ........ r63563 | martin.v.loewis | 2008-05-23 10:18:28 -0500 (Fri, 23 May 2008) | 3 lines Issue #1390: Raise ValueError in toxml when an invalid comment would otherwise be produced. ........ r63564 | raymond.hettinger | 2008-05-23 12:21:44 -0500 (Fri, 23 May 2008) | 1 line Issue 2909: show how to name unpacked fields. ........ r63567 | raymond.hettinger | 2008-05-23 12:34:34 -0500 (Fri, 23 May 2008) | 1 line Fix typo ........ r63569 | martin.v.loewis | 2008-05-23 14:33:13 -0500 (Fri, 23 May 2008) | 3 lines Mention that the leaking of variables from list comprehensions is fixed in 3.0. ........ r63576 | martin.v.loewis | 2008-05-24 04:36:45 -0500 (Sat, 24 May 2008) | 3 lines Don't try to get the window size if it was never set before. Fixes the test failure on Solaris. ........
-
Georg Brandl yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r63575 | martin.v.loewis | 2008-05-24 11:00:04 +0200 (Sat, 24 May 2008) | 3 lines Use announce instead of print, to suppress output in the testsuite. ........
-
Georg Brandl yazdı
-
Benjamin Peterson yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r63698 | benjamin.peterson | 2008-05-26 11:22:27 -0500 (Mon, 26 May 2008) | 2 lines add __all__ to test_support ........
-
Benjamin Peterson yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r63678 | benjamin.peterson | 2008-05-26 08:01:25 -0500 (Mon, 26 May 2008) | 2 lines put a big note on configure.in asking people to run autoconf ........ r63688 | benjamin.peterson | 2008-05-26 09:29:09 -0500 (Mon, 26 May 2008) | 2 lines fix a minor typo ........ r63690 | benjamin.peterson | 2008-05-26 09:51:54 -0500 (Mon, 26 May 2008) | 2 lines fix typo (thank Georg) ........ r63696 | benjamin.peterson | 2008-05-26 10:54:26 -0500 (Mon, 26 May 2008) | 2 lines add PyByteArray docs ........
-
Benjamin Peterson yazdı
-