- 04 Jun, 2010 10 commits
-
-
R. David Murray authored
Previously, unexpected results occurred when email was passed, for example, 'utf8' as a charset name, since email would accept it but would *not* use the 'utf-8' codec for it, even though Python itself recognises that as an alias for utf-8. Now Charset checks with codecs for aliases as well as its own internal table. Issue 8898 has been opened to change this further in py3k so that all aliasing is routed through the codecs module.
-
Martin v. Löwis authored
Patch by Christop Gohlke and Amaury Forgeot d'Arc.
-
Martin v. Löwis authored
be supported in future releases.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
multiprocessing module.
-
Senthil Kumaran authored
-
Senthil Kumaran authored
-
Vinay Sajip authored
-
Stefan Krah authored
-
Sean Reifscheider authored
-
- 03 Jun, 2010 9 commits
-
-
Vinay Sajip authored
-
Benjamin Peterson authored
-
R. David Murray authored
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 authored
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.
-
Stefan Krah authored
-
Stefan Krah authored
the curses module must be linked against ncurses as well. Otherwise it is not safe to load both the readline and curses modules in an application. Thanks Thomas Dickey for answering questions about ncurses/ncursesw and readline!
-
Lars Gustäbel authored
for extracting symbolic and hard link entries as regular files as a work-around on platforms that do not support filesystem links. This stopped working reliably after a change in r74571. I also added a few tests for this functionality.
-
Lars Gustäbel authored
field != 0 by mistake. The associated testcase did not expose this bug because it was broken too.
-
Ronald Oussoren authored
honor the MacOSX SDK when one is specified. This is needed to be able to build using the 10.4u SDK while running on OSX 10.6. This is a fixed version of the patch in r80963, I've tested this patch on OSX and Linux.
-
- 02 Jun, 2010 5 commits
-
-
R. David Murray authored
Fixes (mysterious, to the end user) UnicodeErrors when using utf-8 as the charset and unicode as the _text argument. Also makes the way in which unicode gets encoded to quoted printable for other charsets more sane (it only worked by accident previously). The _payload now is encoded to the charset.output_charset if it is unicode.
-
Antoine Pitrou authored
default of unbuffered IO in subprocess.Popen.
-
Vinay Sajip authored
-
Ronald Oussoren authored
False on MacOSX 10.5 or earlier and scripts won't be able to access GUI functionality.
-
Senthil Kumaran authored
-
- 01 Jun, 2010 4 commits
-
-
Brian Curtin authored
configured before attempting to test PlaySound.
-
Senthil Kumaran authored
-
Georg Brandl authored
Put docs for RegexObject.search() before RegexObject.match() to mirror re.search() and re.match() order.
-
R. David Murray authored
-
- 31 May, 2010 1 commit
-
-
Antoine Pitrou authored
-
- 30 May, 2010 3 commits
-
-
Mark Dickinson authored
and a complex instance. Based on a patch by Meador Inge.
-
Mark Dickinson authored
-
Mark Dickinson authored
type. Coercion for arithmetic operations was already removed in r78280, but that commit didn't remove coercion for rich comparisons.
-
- 29 May, 2010 4 commits
-
-
Mark Dickinson authored
-
Stefan Krah authored
-
Antoine Pitrou authored
-
Georg Brandl authored
-
- 28 May, 2010 4 commits
-
-
R. David Murray authored
-
R. David Murray authored
-
Brian Curtin authored
pipe communication into a loop to retry in case a buildbot gets even slower.
-
Martin v. Löwis authored
-