- 01 Tem, 2008 14 kayıt (commit)
-
-
Georg Brandl yazdı
........ r64635 | georg.brandl | 2008-07-01 22:45:09 +0200 (Tue, 01 Jul 2008) | 2 lines #1523853: add note about fread(). ........
-
Georg Brandl yazdı
-
Benjamin Peterson yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Benjamin Peterson yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64622 | benjamin.peterson | 2008-07-01 14:34:52 -0500 (Tue, 01 Jul 2008) | 1 line #3219 repeated keyword arguments aren't allowed in function calls anymore ........
-
Georg Brandl yazdı
Also directly import names from the various urllib submodules, saves attribute lookup and is much cleaner.
-
Georg Brandl yazdı
-
Benjamin Peterson yazdı
-
Georg Brandl yazdı
-
Benjamin Peterson yazdı
Removal of the Mac modules broke many of the Mac scripts (including BuildApplet.py) so the building of the Python launcher and IDLE.app was broken. I manually copied built versions of those apps into Mac. Everything else which used Mac modules had to die.
-
Mark Summerfield yazdı
- Added cross-refs to fraction & decimal in numeric types. - Moved str.isdecimal() & str.isnumeric() into alphabetical order like all the other str methods; also massaged the text a bit to make it more consistent with the similar methods' texts. BTW The iterator.__iter__() docs seems to be out of step with functions.rst (where it now has an extra parameter).
-
Benjamin Peterson yazdı
-
Mark Summerfield yazdı
since I believe that's been abandoned. - added __round__() to datamodel page's list of numeric special methods.
-
- 30 Haz, 2008 4 kayıt (commit)
-
-
Benjamin Peterson yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64601 | amaury.forgeotdarc | 2008-06-30 17:42:40 -0500 (Mon, 30 Jun 2008) | 11 lines #Issue3088 in-progress: Race condition with instances of classes derived from threading.local: When a thread touches such an object for the first time, a new thread-local __dict__ is created, and the __init__ method is run. But a thread switch can occur here; if the other thread touches the same object, it installs another __dict__; when the first thread resumes, it updates the dictionary of the second... This is the deep cause of the failures in test_multiprocessing involving "managers" objects. Also a 2.5 backport candidate. ........
-
Benjamin Peterson yazdı
-
Martin v. Löwis yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64597 | martin.v.loewis | 2008-06-30 08:57:39 +0200 (Mo, 30 Jun 2008) | 1 line Issue #3215: Build sqlite3 as sqlite3.dll, not sqlite3.pyd ........ r64598 | martin.v.loewis | 2008-06-30 09:01:09 +0200 (Mo, 30 Jun 2008) | 1 line Add _multiprocessing module. ........
-
Martin v. Löwis yazdı
-
- 29 Haz, 2008 2 kayıt (commit)
-
-
Bill Janssen yazdı
-
Bill Janssen yazdı
-
- 28 Haz, 2008 7 kayıt (commit)
-
-
Robert Schuppenies yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64518 | robert.schuppenies | 2008-06-25 11:20:03 +0200 (Wed, 25 Jun 2008) | 2 lines Issue 3147: Fixed SizeofTest failure for LLP64 systems. ........ r64533 | robert.schuppenies | 2008-06-26 17:20:35 +0200 (Thu, 26 Jun 2008) | 3 lines Corrected inconsistencies in sizeof tests and addressed issue pointed out by Jean Brouwers. ........
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Matthias Klose yazdı
needs to be reviewed before release.
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64407 | andrew.kuchling | 2008-06-19 14:48:42 -0500 (Thu, 19 Jun 2008) | 1 line Remove some standalone material from the introduction; various markup and typo fixes ........ r64568 | benjamin.peterson | 2008-06-27 18:22:06 -0500 (Fri, 27 Jun 2008) | 1 line edit multiprocessing docs ........
-
- 27 Haz, 2008 6 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Mark Dickinson yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64561 | mark.dickinson | 2008-06-27 17:49:27 +0100 (Fri, 27 Jun 2008) | 2 lines Issue #3197: rework documentation for fractions module. ........
-
Trent Nelson yazdı
................ r64555 | trent.nelson | 2008-06-26 21:30:34 -0500 (Thu, 26 Jun 2008) | 13 lines Merged revisions 64368-64369 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/tnelson-trunk-bsddb-47-upgrade ........ r64368 | trent.nelson | 2008-06-17 23:13:44 -0500 (Tue, 17 Jun 2008) | 1 line Initial commit of work pertaining to switching the Windows build from Berkeley DB 4.4.20 to 4.7.25. Note that I've deprecated the standalone '_bsddb44.vcproj' in lieu of adding the sources in a separate folder to the _bsddb project. This was a conscious decision and actually makes everything far more easier to manage. With this approach, entire test suite passed straight off the bat. Well, almost -- the timeout in bsddb/test/test_replication.py needed bumping up a little -- 2 seconds was too short. 10 seconds seems to be fine for me, but I'll make sure Jesus verifies. More documentation to come once I've been able to test out this approach on the buildbots (hence keeping the changes in a separate branch for now). ........ r64369 | trent.nelson | 2008-06-17 23:19:12 -0500 (Tue, 17 Jun 2008) | 1 line Bump Berkeley DB version from 4.4.20 to 4.7.25. ........ ................
-
Brett Cannon yazdı
-
Brett Cannon yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64549 | brett.cannon | 2008-06-26 17:31:13 -0700 (Thu, 26 Jun 2008) | 7 lines warnings.warn_explicit() did not have the proper TypeErrors in place to prevent bus errors or SystemError being raised. As a side effect of fixing this, a bad DECREF that could be triggered when 'message' and 'category' were both None was fixed. Closes issue 3211. Thanks JP Calderone for the bug report. ........
-
Brett Cannon yazdı
-
- 26 Haz, 2008 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
........ r64546 | benjamin.peterson | 2008-06-26 16:24:35 -0500 (Thu, 26 Jun 2008) | 1 line use the new API ........ r64547 | benjamin.peterson | 2008-06-26 16:29:19 -0500 (Thu, 26 Jun 2008) | 1 line fix isSet in _exposed ........
-
Georg Brandl yazdı
-
- 25 Haz, 2008 3 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64517 | benjamin.peterson | 2008-06-24 22:09:05 -0500 (Tue, 24 Jun 2008) | 1 line remove bytes alias in multiprocessing ........ r64519 | benjamin.peterson | 2008-06-25 07:39:05 -0500 (Wed, 25 Jun 2008) | 1 line use byte literals in multiprocessing ........
-
Benjamin Peterson yazdı
........ r64520 | benjamin.peterson | 2008-06-25 07:44:29 -0500 (Wed, 25 Jun 2008) | 1 line get rid of 2.6/3.0 switch statements in multiprocessing ........
-
- 24 Haz, 2008 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Mark Dickinson yazdı
........ r64508 | mark.dickinson | 2008-06-24 16:35:14 +0100 (Tue, 24 Jun 2008) | 2 lines Remove references to Py3k in __floor__, __ceil__ and __round__ documentation. ........
-