- 28 Kas, 2009 4 kayıt (commit)
-
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
Objects/floatobject.c and Objects/complexobject.c. This should silence compiler warnings about implicit declaration of the 'finite' function on Solaris.
-
Georg Brandl yazdı
-
Mark Dickinson yazdı
to indicate that semaphores aren't available; define a new variable POSIX_SEMAPHORES_NOT_ENABLED instead.
-
- 27 Kas, 2009 5 kayıt (commit)
-
-
Gregory P. Smith yazdı
-
Vinay Sajip yazdı
-
Martin v. Löwis yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
`storbinary()` method of FTP and FTP_TLS objects gains an optional `rest` argument. Patch by Pablo Mouzo. (note: the patch also adds a test for the rest argument in retrbinary())
-
- 26 Kas, 2009 3 kayıt (commit)
-
-
Georg Brandl yazdı
-
Antoine Pitrou yazdı
-
Martin v. Löwis yazdı
-
- 25 Kas, 2009 7 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
the total number of seconds in the duration. Patch by Brian Quinlan.
-
Barry Warsaw yazdı
-
Benjamin Peterson yazdı
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r76160 | benjamin.peterson | 2009-11-08 18:53:48 -0600 (Sun, 08 Nov 2009) | 1 line undeprecate the -p option; it's useful for converting python3 sources ........ r76161 | benjamin.peterson | 2009-11-08 19:05:37 -0600 (Sun, 08 Nov 2009) | 1 line simplify condition ........ r76250 | benjamin.peterson | 2009-11-13 16:56:48 -0600 (Fri, 13 Nov 2009) | 1 line fix handling of a utf-8 bom #7313 ........ r76252 | benjamin.peterson | 2009-11-13 16:58:36 -0600 (Fri, 13 Nov 2009) | 1 line remove pdb turd ........ r76447 | benjamin.peterson | 2009-11-22 18:17:40 -0600 (Sun, 22 Nov 2009) | 1 line #7375 fix nested transformations in fix_urllib ........ r76506 | benjamin.peterson | 2009-11-24 18:34:31 -0600 (Tue, 24 Nov 2009) | 1 line use generator expressions in any() ........
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
Issue #6615: logging: Used weak references in internal handler list. Thanks to flox (Florent Xicluna) for the patch.
-
- 24 Kas, 2009 7 kayıt (commit)
-
-
Mark Dickinson yazdı
(Should silence some compiler warnings.)
-
Alexandre Vassalotti yazdı
The reference to copyreg was a unnoticed leftover from the compatibility support for the grand renaming of the standard library in Python 3. The compatibility support was reverted in r63493, but not completely as this patch shows. Based on a patch by Amaury Forgeot d'Arc.
-
Vinay Sajip yazdı
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-
Jesse Noller yazdı
-
Mark Dickinson yazdı
-
- 23 Kas, 2009 7 kayıt (commit)
-
-
Mark Dickinson yazdı
%f-style formatting, which used to occur at high precision. Float formatting should now be consistent between 2.7 and 3.1.
-
Georg Brandl yazdı
-
Mark Dickinson yazdı
first step towards removing the %f -> %g switch (see issues 7117, 5859).
-
Senthil Kumaran yazdı
characters.
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-
Lars Gustäbel yazdı
closes the internal file object in case of an error (issue #7341).
-
- 22 Kas, 2009 1 kayıt (commit)
-
-
Lars Gustäbel yazdı
(Note that an empty archive is not the same as an empty file. An empty archive contains no members and is correctly terminated with an EOF block full of zeros. An empty file contains no data at all.) The problem was that although tarfile was able to create empty archives, it failed to open them raising a ReadError. On the other hand, tarfile opened empty files without error in most read modes and presented them as empty archives. (However, some modes still raised errors: "r|gz" raised ReadError, but "r:gz" worked, "r:bz2" even raised EOFError.) In order to get a more fine-grained control over the various internal error conditions I now split up the HeaderError exception into a number of meaningful sub-exceptions. This makes it easier in the TarFile.next() method to react to the different conditions in the correct way. The visible change in its behaviour now is that tarfile will open empty archives correctly and raise ReadError consistently for empty files.
-
- 21 Kas, 2009 3 kayıt (commit)
-
-
Jesse Noller yazdı
-
Jesse Noller yazdı
-
Jesse Noller yazdı
issue5738: The distribution example was confusing, and out of date. It's too large to include inline in the docs as well. It belongs in an addons module outside the stdlib. Removing.
-
- 20 Kas, 2009 3 kayıt (commit)
-
-
Mark Dickinson yazdı
properly, and use this to skip test_multiprocessing on platforms where sem_open raises a signal. This should fix some FreeBSD buildbot failures for test_multiprocessing.
-
Mark Dickinson yazdı
-
R. David Murray yazdı
-