| Commit message (Collapse) | Author | Age | Files | Lines |
|\ |
|
| |\ |
|
| | | |
|
|/ / |
|
| |
| |
| |
| | |
config.{guess,sub}. Don't use uname calls for cross builds.
|
| |
| |
| |
| | |
config.{guess,sub}.
|
|\ \
| |/
| |
| | |
urls/ftp servers. closes issue11199
|
| | |
|
| |
| |
| |
| | |
when using gcc, use a compilation test for the cross build check for long long format.
|
| | |
|
| |
| |
| |
| |
| | |
timeout in queue and threading modules to not be affected of system time
update.
|
| | |
|
|\ \
| |/
| |
| |
| |
| | |
in the hash table internal to the pyexpat module's copy of the expat
library to avoid a denial of service due to hash collisions.
Patch by David Malcolm with some modifications by the expat project.
|
| |\
| | |
| | |
| | |
| | |
| | | |
in the hash table internal to the pyexpat module's copy of the expat
library to avoid a denial of service due to hash collisions.
Patch by David Malcolm with some modifications by the expat project.
|
| | |
| | |
| | |
| | |
| | |
| | | |
in the hash table internal to the pyexpat module's copy of the expat
library to avoid a denial of service due to hash collisions.
Patch by David Malcolm with some modifications by the expat project.
|
| | | |
|
|\ \ \ |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
The quoting of ()s inside quoted strings is allowed by the RFC, but is not
needed. There seems to be no reason to add needless escapes.
|
| |\ \ \
| | |/ /
| | | |
| | | |
| | | |
| | | | |
This is a different fix than the 3.2 fix, but the new tests are the same.
This also affected smtplib.SMTP.send_message, which calls BytesParser.
|
| | | |
| | | |
| | | |
| | | | |
This also affected smtplib.SMTP.send_message, which calls BytesParser.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
accepts several filenames of profile stat files and merges them all.
Patch by Matt Joiner.
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
UnicodeEncodeError is raised for strings contains non-BMP characters.
For eval results unicode escaping is used, print() calls display
exception with traceback as usual.
|
|\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
In Python2, if a unicode string was assigned as the value of a header,
email would automatically CTE encode it using the UTF8 charset.
This capability was lost in the Python3 translation, and this patch
restores it.
Patch by Ali Ikinci, assisted by R. David Murray.
I also added a fix for the mailbox test that was depending (with a comment
that it was a bad idea to so depend) on non-ASCII causing message_from_string
to raise an error. It now uses support.patch to induce an error during
message serialization.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
In Python2, if a unicode string was assigned as the value of a header,
email would automatically CTE encode it using the UTF8 charset.
This capability was lost in the Python3 translation, and this patch
restores it.
Patch by Ali Ikinci, assisted by R. David Murray.
I also added a fix for the mailbox test that was depending (with a comment
that it was a bad idea to so depend) on non-ASCII causing message_from_string
to raise an error. It now uses support.patch to induce an error during
message serialization.
|
| | |
| | |
| | |
| | | |
Patch by Roger Serwy.
|
| | |
| | |
| | |
| | | |
takes, block number, block read size, file_size
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
and datetime.datetime.utcfromtimestamp() now raise an OSError instead of
ValueError if localtime() or gmtime() failed.
|
| | | |
|
| | |
| | |
| | |
| | | |
Patch by Roger Serwy.
|
| | |
| | |
| | |
| | | |
Patch by Guilherme Polo and Andrew Svetlov.
|
| | |
| | |
| | |
| | | |
Patch by Guilherme Polo and Andrew Svetlov.
|
|\ \ \
| |/ / |
|
| | |
| | |
| | |
| | | |
Mac OS X to prevent interpreter crashes when compiled on 10.7.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
timeval or timespec
time.ctime(), gmtime(), time.localtime(), datetime.date.fromtimestamp(),
datetime.datetime.fromtimestamp() and datetime.datetime.utcfromtimestamp() now
raises an OverflowError, instead of a ValueError, if the timestamp does not fit
in time_t.
datetime.datetime.fromtimestamp() and datetime.datetime.utcfromtimestamp() now
round microseconds towards zero instead of rounding to nearest with ties going
away from zero.
|
|\ \ \
| |/ / |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
Tkinter.Variables; harmonize exceptions to ValueError; only delete variables
that have not been deleted; assert that variable names are strings
Patch by Andrew Svetlov.
|
| | |
| | |
| | |
| | |
| | | |
Contrary to the documentation, finditer() did not take pos and endpos
keyword arguments.
|
|\ \ \
| |/ / |
|
| | | |
|
| | |
| | |
| | |
| | | |
patch written by Nicholas Riley.
|
|\ \ \
| |/ /
| | |
| | | |
intent of the test. Closes #13450. Patch by Akira Li.
|
| | |
| | |
| | |
| | | |
intent of the test. Closes #13450.
|
|\ \ \
| |/ /
| | |
| | | |
print. Patch by Oleg Plakhotnyuk.
|
|\ \ \ |
|
| | | |
| | | |
| | | |
| | | | |
Thanks for James Sanders for the bug report and the patch.
|
|/ / / |
|
| | |
| | |
| | |
| | | |
by Pedro Kroger.
|
|\ \ \
| |/ /
| | |
| | | |
Windows when the child process has already exited.
|