An error occurred fetching the project authors.
- 07 Jun, 2010 1 commit
-
-
Benjamin Peterson authored
-
- 06 Jun, 2010 3 commits
-
-
Tarek Ziadé authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 05 Jun, 2010 5 commits
-
-
Michael Foord authored
-
Ezio Melotti authored
-
Alexander Belopolsky authored
-
Mark Dickinson authored
This is just a quick fix: if the warning is turned into an exception, the exception simply gets ignored.
-
Mark Dickinson authored
-
- 04 Jun, 2010 5 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.
-
- 03 Jun, 2010 4 commits
-
-
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
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
field != 0 by mistake. The associated testcase did not expose this bug because it was broken too.
-
- 02 Jun, 2010 2 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.
-
Ronald Oussoren authored
False on MacOSX 10.5 or earlier and scripts won't be able to access GUI functionality.
-
- 30 May, 2010 2 commits
-
-
Mark Dickinson authored
and a complex instance. Based on a patch by Meador Inge.
-
Mark Dickinson authored
type. Coercion for arithmetic operations was already removed in r78280, but that commit didn't remove coercion for rich comparisons.
-
- 28 May, 2010 1 commit
-
-
Martin v. Löwis authored
-
- 27 May, 2010 2 commits
-
-
Victor Stinner authored
gaierror(EAI_NODATA)
-
Alexander Belopolsky authored
timedelta from date or datetime falls outside of the MINYEAR:MAXYEAR range.
-
- 26 May, 2010 1 commit
-
-
Victor Stinner authored
-
- 25 May, 2010 2 commits
-
-
Victor Stinner authored
error handler, instead of writing to the C stderr file in utf-8
-
Brian Curtin authored
ERROR_MORE_DATA, requiring another call to get the remaining data. Patch by Daniel Stutzbach
-
- 24 May, 2010 3 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
-
Georg Brandl authored
#8016: add the CP858 codec (approved by Benjamin). (Also add CP720 to the tests, it was missing there.)
-
- 22 May, 2010 4 commits
-
-
Georg Brandl authored
-
Victor Stinner authored
* Fix seek() method of codecs.open(), don't write the BOM twice after seek(0) * Fix reset() method of codecs, UTF-16, UTF-32 and StreamWriter classes * test_codecs: use "w+" mode instead of "wt+". "t" mode is not supported by Solaris or Windows, but does it really exist? I found it the in the issue.
-
Georg Brandl authored
-
Victor Stinner authored
after seek(0)
-
- 21 May, 2010 5 commits
-
-
Victor Stinner authored
than strict
-
Georg Brandl authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Antoine Pitrou authored
embedders of the interpreter to set sys.argv without also modifying sys.path. This helps fix `CVE-2008-5983 <http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-5983>`_.
-