An error occurred fetching the project authors.
- 04 Jun, 2010 4 commits
-
-
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>`_.
-
- 20 May, 2010 1 commit
-
-
Brett Cannon authored
(e.g. from .os import sep) and it failed, import would still try the implicit relative import semantics of an absolute import (from os import sep). That's not right, so when level is negative, only do explicit relative import semantics. Fixes issue #7902. Thanks to Meador Inge for the patch.
-
- 19 May, 2010 1 commit
-
-
Tarek Ziadé authored
-
- 17 May, 2010 3 commits
-
-
Antoine Pitrou authored
it from another thread. Patch by Daniel Stutzbach.
-
Florent Xicluna authored
-
Tarek Ziadé authored
-
- 15 May, 2010 1 commit
-
-
Victor Stinner authored
-
- 14 May, 2010 1 commit
-
-
Brett Cannon authored
interpreter shutdown semantics. Same issue goes for the methods that __del__ called. Now all the methods capture the global objects it needs as default values to private parameters (could have stuck them on the class object itself, but since the objects have nothing directly to do with the class that seemed wrong). There is no test as making one that works is hard. This patch was verified against a consistently failing test in Mercurial's test suite, though, so it has been tested in some regard. Closes issue #5099. Thanks to Mary Stern for the bug report and Gabriel Genellina for writing another patch for the same issue and attempting to write a test.
-
- 13 May, 2010 1 commit
-
-
Brett Cannon authored
assuming framework-specific site-packages directories were being used.
-
- 11 May, 2010 2 commits
-
-
Antoine Pitrou authored
the zlib itself doesn't give any detailed explanation.
-
Antoine Pitrou authored
handled by a decompressor object without errors (it returns incomplete uncompressed data).
-