- 16 Haz, 2010 6 kayıt (commit)
-
-
Alexander Belopolsky yazdı
Segregated code shared between time and datetime modules into Modules/_time.c. Added a new header file, Modules/_time.h, which will be used instead of Include/timefuncs.h for declarations shared between time and datetime modules.
-
Senthil Kumaran yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r82026 | senthil.kumaran | 2010-06-16 23:07:32 +0530 (Wed, 16 Jun 2010) | 3 lines Addressing RDM's review comments on the doc change. ........
-
Senthil Kumaran yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r82018 | senthil.kumaran | 2010-06-16 20:25:31 +0530 (Wed, 16 Jun 2010) | 3 lines Fix Issue8937 - SimpleHTTPServer should contain usage example ........
-
R. David Murray yazdı
-
R. David Murray yazdı
I'm going to merge 81678 by hand. ........ r81571 | victor.stinner | 2010-05-27 18:29:48 -0400 (Thu, 27 May 2010) | 3 lines Issue #8835: test_support.transient_internet() catchs gaierror(EAI_NONAME) and gaierror(EAI_NODATA) ........ r81678 | r.david.murray | 2010-06-03 16:19:25 -0400 (Thu, 03 Jun 2010) | 7 lines #8889: rewrite transient_internet so we don't use EAI_NODATA on FreeBSD. FreeBSD doesn't have socket.EAI_NODATA. I rewrote the routine because there's no easy way to conditionally include a context manager in a with statement. As a side benefit, instead of a stack of context managers there's now only one. ........
-
R. David Murray yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81675 | r.david.murray | 2010-06-03 11:43:20 -0400 (Thu, 03 Jun 2010) | 10 lines #5610: use \Z not $ so we don't eat extra chars when body part ends with \r\n. If a body part ended with \r\n, feedparser, using '$' to terminate its search for the newline, would match on the \r\n, and think that it needed to strip two characters in order to account for the line end before the boundary. That made it chop one too many characters off the end of the body part. Using \Z makes the match correct. Patch and test by Tony Nelson. ........
-
- 15 Haz, 2010 8 kayıt (commit)
-
-
R. David Murray yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81634 | r.david.murray | 2010-05-31 21:42:41 -0400 (Mon, 31 May 2010) | 2 lines #7583: clarify discussion of hard tab expansion in doctests. ........
-
Ronald Oussoren yazdı
-
Alexander Belopolsky yazdı
-
Alexander Belopolsky yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Ronald Oussoren yazdı
will fail when builddir != srcdir (that is, when you run configure in a directory that is not the top of the source tree).
-
Mark Dickinson yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81992 | mark.dickinson | 2010-06-15 09:33:03 +0100 (Tue, 15 Jun 2010) | 3 lines Issue #8469: Further clarifications and improvements to struct module documentation. Thanks Mads Kiilerich. ........
-
- 14 Haz, 2010 4 kayıt (commit)
-
-
Brett Cannon yazdı
nicer to other VMs. Thanks to Philip Jenvey for the pointer.
-
Alexander Belopolsky yazdı
-
Alexander Belopolsky yazdı
-
Alexander Belopolsky yazdı
implementing ``datetime.tzinfo`` interface.
-
- 13 Haz, 2010 6 kayıt (commit)
-
-
Victor Stinner yazdı
"t#" format was removed from convertitem() (convertsimple) but not skipitem().
-
Victor Stinner yazdı
formats if the string contains a null byte/character. Write unit tests for string formats.
-
Mark Dickinson yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81971 | mark.dickinson | 2010-06-13 13:01:34 +0100 (Sun, 13 Jun 2010) | 1 line Ezio Melotti was missing from Misc/ACKS. ........
-
Mark Dickinson yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81969 | mark.dickinson | 2010-06-13 12:07:00 +0100 (Sun, 13 Jun 2010) | 1 line Add Éric Araujo to Misc/ACKS for doc work and many patch and commit reviews. ........
-
Mark Dickinson yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81967 | mark.dickinson | 2010-06-13 11:50:29 +0100 (Sun, 13 Jun 2010) | 4 lines Issue #8986: erfc was raising OverflowError on Linux for arguments in the (approximate) range (-27.3, 30.0), as a result of an escaped errno value. ........
-
Mark Dickinson yazdı
-
- 12 Haz, 2010 16 kayıt (commit)
-
-
Alexander Belopolsky yazdı
-
Mark Dickinson yazdı
........ r81957 | mark.dickinson | 2010-06-12 19:50:34 +0100 (Sat, 12 Jun 2010) | 5 lines Issue #8469: Add standard sizes to table in struct documentation; additional clarifications and documentation tweaks. Backport of revisions 81955-81956 from py3k. ........
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-
Benjamin Peterson yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81953 | benjamin.peterson | 2010-06-12 12:47:06 -0500 (Sat, 12 Jun 2010) | 1 line fix warning with ucs4 ........
-
Alexander Belopolsky yazdı
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
displays information for the struct.Struct class.
-
Nick Coghlan yazdı
........ r81945 | nick.coghlan | 2010-06-12 23:45:37 +1000 (Sat, 12 Jun 2010) | 1 line Backport a fix from Py3k for a potentially misleading example ........
-
Nick Coghlan yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r80578 | nick.coghlan | 2010-04-29 00:29:06 +1000 (Thu, 29 Apr 2010) | 1 line Issue 7490: make IGNORE_EXCEPTION_DETAIL also ignore details of the module containing the exception under test (original patch by Lennart Regebro) ........
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-