| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
where supported by the system. Patch by Nikita Vetoshkin.
|
|
|
|
|
| |
didn't match that of io.open(), and they also didn't get forwarded
properly to TextIOWrapper in text mode. Patch by Kai Zhu.
|
| |
|
|
|
|
| |
Akira Kitada.
|
|
|
|
| |
before passing it to the system asctime. Patch by MunSic Jeong.
|
|
|
|
| |
Patch by Sandro Tosi.
|
|
|
|
| |
Patch by Florian Festi.
|
| |
|
| |
|
|
|
|
|
| |
by the new (and simpler) DUP_TOP_TWO. Performance isn't changed, but
our bytecode is a bit simplified. Patch by Demur Rumed.
|
| |
|
|
|
|
| |
properly. Patch by Stefan Behnel.
|
|
|
|
| |
Sébastien Sablé.
|
|
|
|
| |
inputs to the nearest integer. Thanks Neil Tallim for the patch.
|
|
|
|
|
|
|
|
| |
Two character years are now converted to four character years using
the Posix standard rule (<68 == 2000, >=68==1900). This makes the
parsed date RFC2822 compliant even if the input is not.
Patch and test by Jeffrey Finkelstein.
|
| |
|
|
|
|
| |
(Also fix a name ordering in the ACKS file.)
|
|
|
|
| |
Matthew Ahrens.
|
|
|
|
| |
and `gzip.decompress`. Original patch by Anand B. Pillai.
|
|
|
|
|
|
| |
original read request had been satisfied, which can block indefinitely
when the underlying raw IO channel is e.g. a socket. Report and original
patch by Jason V. Miller.
|
|
|
|
| |
Added names from release27-maint branch that were missing from py3k.
|
|
|
|
| |
Interpreter Lock around all system calls. Original patch by Ryan Kelly.
|
|
|
|
|
| |
are now included in the set of attributes copied by default by
functools.wraps and functools.update_wrapper. Patch by Terrence Cole.
|
|
|
|
| |
Michele Orrù.
|
|
|
|
| |
useing ftplib's readline methods is supposed to always use a binary file
|
| |
|
|
|
|
| |
by Alexander Shigin). Merged from 2.7 branch.
|
|
|
|
|
|
|
|
|
| |
The RFCs encourage following Postel's law: be liberal in what you accept.
So if someone forgot to pad the base64 encoded word payload to an
even four bytes, we add the padding before handing it to base64mime.decode.
Previously, missing padding resulted in a HeaderParseError.
Patch by Jason Williams.
|
|
|
|
|
|
|
|
|
|
|
| |
An argparse option parser created with a prefix_chars that did not
include a '-' would happily add -h and --help options, and then throw
an error when it tried to format the help because the - was an invalid
prefix character. This patch makes it use the first character of
prefix_chars as the character for the help options if and only if '-'
is not one of the valid prefix_chars.
Fix by Theodore Turocy, unit tests by Catherine Devlin.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Cmd used to blindly chop off the last character of every input line. If
the input reached EOF and there was no final new line, it would truncate
the last character of the last command. This fix instead strips trailing
\r\n from the input lines. While this is a small behavior change, it
should not break any working code, since feeding a '\r\n' terminated
file to Cmd would previously leave the \r's on the lines, resulting
in failed command execution.
I wrote the unit test in preparation for a PyOhio TeachMe session
run by Catherine Devlin, and we can thank Catherine and the PyOhio
session attendees for the fix. I've added Catherine to the Acks file
for organizing and leading the TeachMe session, out of which we will
hopefully get some new contributors.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Closes issue 9342. Thanks John Chandler for the patch.
|
|
|
|
| |
Bendersky for the patch.
|
| |
|
| |
|
| |
|
|
|
|
| |
Patch by Andrew Clegg.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Added Windows support for os.symlink when run on Windows 6.0 or greater,
aka Vista. Previous Windows versions will raise NotImplementedError
when trying to symlink.
Includes numerous test updates and additions to test_os, including
a symlink_support module because of the fact that privilege escalation
is required in order to run the tests to ensure that the user is able
to create symlinks. By default, accounts do not have the required
privilege, so the escalation code will have to be exposed later (or
documented on how to do so). I'll be following up with that work next.
Note that the tests use ctypes, which was agreed on during the PyCon
language summit.
|
|
|
|
| |
Daniel Urban
|
|
|
|
| |
implementing ``datetime.tzinfo`` interface.
|
|
|
|
|
|
|
|
|
|
| |
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.
........
|
|
|
|
|
|
|
|
|
|
| |
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.
........
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
........
|
| |
|
|
|
|
|
|
|
|
|
|
| |
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)
........
|