An error occurred fetching the project authors.
- 04 Aug, 2010 1 commit
-
-
Richard Jones authored
-
- 03 Aug, 2010 6 commits
-
-
R. David Murray authored
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.
-
Mark Dickinson authored
-
R. David Murray authored
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.
-
Antoine Pitrou authored
non-ASCII content.
-
Mark Dickinson authored
the result of a call to history_get_history_state.
-
Mark Dickinson authored
-
- 02 Aug, 2010 3 commits
-
-
Georg Brandl authored
#7372: fix regression in pstats: a previous fix to handle cProfile data in add_callers broke handling of profile data.
-
Georg Brandl authored
#9428: fix running scripts from profile/cProfile with their own name and the right namespace. Same fix as for trace.py in #1690103.
-
Georg Brandl authored
-
- 01 Aug, 2010 13 commits
-
-
Georg Brandl authored
-
Raymond Hettinger authored
-
Antoine Pitrou authored
reads on a BZ2File object, rather than returning incorrect results.
-
Antoine Pitrou authored
re-initializing a buffered IO object by calling its `__init__` method.
-
Georg Brandl authored
-
Brian Curtin authored
don't cause a crash on Windows.
-
Georg Brandl authored
-
Mark Dickinson authored
output with no type specifier failed to match the str output: - format(complex(-0.0, 2.0), '-') omitted the real part from the output, - format(complex(0.0, 2.0), '-') included a sign and parentheses.
-
Georg Brandl authored
#8826: the "expires" attribute value is a date string with spaces, but apparently not all user-agents put it in quotes. Handle that as a special case.
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
R. David Murray authored
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.
-
- 31 Jul, 2010 12 commits
-
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
at import time, rather by default use the current streams like the other APIs that output help.
-
Georg Brandl authored
-
Georg Brandl authored
#7909: the prefixes \\.\ and \\?\ indicate special Windows paths, do not try to manipulate them. See http://msdn.microsoft.com/en-us/library/aa365247%28VS.85%29.aspx for details.
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Raymond Hettinger authored
-
Georg Brandl authored
-
- 30 Jul, 2010 5 commits
-
-
Georg Brandl authored
Part of #7245: when KeyboardInterrupt is raised while defining commands, restore the old commands instead of producing a traceback.
-
Matthias Klose authored
-
Georg Brandl authored
Show the traceback line numbers as well as the current line numbers if an exception is being debugged. Courtesy of pdb++ by Antonio Cuni. Also document -> and >> markers for "list".
-
Martin v. Löwis authored
-
Georg Brandl authored
-