- 30 Nov, 2009 1 commit
-
-
Raymond Hettinger authored
-
- 29 Nov, 2009 3 commits
-
-
Benjamin Peterson authored
Thanks Robert Collins
-
Tarek Ziadé authored
-
Eric Smith authored
Issue #3382: Make '%F' and float.__format__('F') convert results to upper case. Much of the patch came from Mark Dickinson.
-
- 28 Nov, 2009 6 commits
-
-
Mark Dickinson authored
compiler_add_o, use copysign instead of examining the first and last bytes of the double. The latter method fails for little-endian ARM, OABI, where doubles are little-endian but with the words swapped.
-
Antoine Pitrou authored
-
Mark Dickinson authored
-
Mark Dickinson authored
Objects/floatobject.c and Objects/complexobject.c. This should silence compiler warnings about implicit declaration of the 'finite' function on Solaris.
-
Georg Brandl authored
-
Mark Dickinson authored
to indicate that semaphores aren't available; define a new variable POSIX_SEMAPHORES_NOT_ENABLED instead.
-
- 27 Nov, 2009 5 commits
-
-
Gregory P. Smith authored
-
Vinay Sajip authored
-
Martin v. Löwis authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
`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 Nov, 2009 3 commits
-
-
Georg Brandl authored
-
Antoine Pitrou authored
-
Martin v. Löwis authored
-
- 25 Nov, 2009 7 commits
-
-
Antoine Pitrou authored
-
Antoine Pitrou authored
the total number of seconds in the duration. Patch by Brian Quinlan.
-
Barry Warsaw authored
-
Benjamin Peterson authored
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 authored
-
Vinay Sajip authored
-
Vinay Sajip authored
Issue #6615: logging: Used weak references in internal handler list. Thanks to flox (Florent Xicluna) for the patch.
-
- 24 Nov, 2009 7 commits
-
-
Mark Dickinson authored
(Should silence some compiler warnings.)
-
Alexandre Vassalotti authored
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 authored
-
Mark Dickinson authored
-
Mark Dickinson authored
-
Jesse Noller authored
-
Mark Dickinson authored
-
- 23 Nov, 2009 7 commits
-
-
Mark Dickinson authored
%f-style formatting, which used to occur at high precision. Float formatting should now be consistent between 2.7 and 3.1.
-
Georg Brandl authored
-
Mark Dickinson authored
first step towards removing the %f -> %g switch (see issues 7117, 5859).
-
Senthil Kumaran authored
characters.
-
Mark Dickinson authored
-
Mark Dickinson authored
-
Lars Gustäbel authored
closes the internal file object in case of an error (issue #7341).
-
- 22 Nov, 2009 1 commit
-
-
Lars Gustäbel authored
(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.
-