Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added Andrej Krpic. (Thanks for issue #7879 patch.) | Alexander Belopolsky | 2010-05-26 | 1 | -0/+1 |
| | |||||
* | Issue #7879: Skip negative timestamps test on any Windows platform | Alexander Belopolsky | 2010-05-26 | 1 | -7/+2 |
| | | | | using unittest.skipIf decorator. | ||||
* | Issue #7879: Do not test negative timestamps on any Windows platform | Alexander Belopolsky | 2010-05-26 | 1 | -3/+3 |
| | | | | including Windows CE. | ||||
* | Issue #8825: additional testcases for int(string, 0) and long(string, 0). | Mark Dickinson | 2010-05-26 | 2 | -0/+23 |
| | |||||
* | Issue #7449: Skip test_socketserver if threading support is disabled | Victor Stinner | 2010-05-26 | 2 | -0/+3 |
| | |||||
* | Issue #3798: Write sys.exit() message to sys.stderr to use stderr encoding and | Victor Stinner | 2010-05-25 | 3 | -1/+30 |
| | | | | error handler, instead of writing to the C stderr file in utf-8 | ||||
* | Add Alexander Belopolsky. | Martin v. Löwis | 2010-05-25 | 1 | -0/+3 |
| | |||||
* | Fix a NameError in test_enumerate. | Mark Dickinson | 2010-05-25 | 1 | -1/+1 |
| | |||||
* | Issue #8816: Extra tests for some built-in functions. These tests are | Mark Dickinson | 2010-05-25 | 3 | -14/+84 |
| | | | | ports of IronPython tests. Thanks Gregory Nofi. | ||||
* | Issue 8818: urlparse/urlsplit keyword is 'scheme', not 'default_scheme'. | R. David Murray | 2010-05-25 | 1 | -3/+3 |
| | |||||
* | Issue 8143: sync unquote in urlparse with urllib; add comment about doing so. | R. David Murray | 2010-05-25 | 2 | -10/+18 |
| | | | | | | | unquote is duplicated in the two files to avoid a circular reference. (This is fixed in Python3.) Updates keep getting made to the public unquote without fixing the urlparse one, however, so this fix syncs the two and adds a comment to both to make sure changes are applied to both. | ||||
* | Fix #2810 - handle the case where some registry calls return | Brian Curtin | 2010-05-25 | 3 | -33/+159 |
| | | | | | | ERROR_MORE_DATA, requiring another call to get the remaining data. Patch by Daniel Stutzbach | ||||
* | Add three items | Andrew M. Kuchling | 2010-05-25 | 1 | -3/+16 |
| | |||||
* | Make the contributor list alphabetical again. | Brett Cannon | 2010-05-25 | 1 | -1/+1 |
| | |||||
* | correct default docs | Benjamin Peterson | 2010-05-25 | 2 | -7/+7 |
| | |||||
* | set svn:eol-style | Benjamin Peterson | 2010-05-24 | 0 | -0/+0 |
| | |||||
* | #8616: update module name | Georg Brandl | 2010-05-24 | 1 | -1/+1 |
| | |||||
* | Add the author of the last fix (Issue #6662) | Victor Stinner | 2010-05-24 | 2 | -1/+3 |
| | |||||
* | Issue #6662: Fix parsing of malformatted charref (&#bad;) | Victor Stinner | 2010-05-24 | 3 | -0/+12 |
| | |||||
* | #8016: add the CP858 codec (approved by Benjamin). (Also add CP720 to the ↵ | Georg Brandl | 2010-05-24 | 6 | -4/+713 |
| | | | | tests, it was missing there.) | ||||
* | Fix default value for version help. Approved by Benjamin on python-dev: ↵ | Steven Bethard | 2010-05-24 | 2 | -1/+20 |
| | | | | http://mail.python.org/pipermail/python-dev/2010-May/100231.html | ||||
* | argparse documentation updates (including updates to optparse and getopt ↵ | Steven Bethard | 2010-05-24 | 3 | -5/+31 |
| | | | | documentation that were promised in the PEP) | ||||
* | #1436346: make it more obvious that timetuple[7] is yday. | Georg Brandl | 2010-05-23 | 1 | -7/+10 |
| | |||||
* | NEWS rewrap and punctuation consistency. | Georg Brandl | 2010-05-22 | 1 | -212/+206 |
| | |||||
* | Merged revisions 80937,81478 via svnmerge from | Benjamin Peterson | 2010-05-22 | 2 | -2/+4 |
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r80937 | benjamin.peterson | 2010-05-07 14:10:58 -0500 (Fri, 07 May 2010) | 1 line remove redundant unicode call ........ r81478 | benjamin.peterson | 2010-05-22 13:47:39 -0500 (Sat, 22 May 2010) | 1 line ensure doctests have some future_features ........ | ||||
* | Fix my last commit (r81471) about codecs | Victor Stinner | 2010-05-22 | 2 | -6/+6 |
| | | | | Rememder: don't touch the code just before a commit | ||||
* | Issue #6268: More bugfixes about BOM, UTF-16 and UTF-32 | Victor Stinner | 2010-05-22 | 5 | -22/+78 |
| | | | | | | | * 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. | ||||
* | #8635: document enumerate() start parameter in docstring. | Georg Brandl | 2010-05-22 | 1 | -3/+4 |
| | |||||
* | Underscore the name of an internal utility function. | Georg Brandl | 2010-05-22 | 1 | -3/+3 |
| | |||||
* | Issue #3924: Ignore cookies with invalid "version" field in cookielib. | Georg Brandl | 2010-05-22 | 3 | -6/+32 |
| | |||||
* | #8785: less confusing description of regex.find*. | Georg Brandl | 2010-05-22 | 1 | -2/+6 |
| | |||||
* | Issue #6268: Fix seek() method of codecs.open(), don't read the BOM twice | Victor Stinner | 2010-05-22 | 3 | -0/+28 |
| | | | | after seek(0) | ||||
* | Issue #5640: Fix Shift-JIS incremental encoder for error handlers different | Victor Stinner | 2010-05-21 | 3 | -1/+8 |
| | | | | than strict | ||||
* | #8709: mention Windows support for os.devnull. | Georg Brandl | 2010-05-21 | 1 | -2/+2 |
| | |||||
* | typo | Georg Brandl | 2010-05-21 | 1 | -1/+1 |
| | |||||
* | Correct info for Semaphore.acquire() semantics under OSX. | Georg Brandl | 2010-05-21 | 1 | -4/+3 |
| | |||||
* | simplify and modernize updatecache() | Benjamin Peterson | 2010-05-21 | 1 | -12/+10 |
| | |||||
* | remove debugging rubish | Benjamin Peterson | 2010-05-21 | 1 | -3/+0 |
| | |||||
* | ensure the last line has a trailing newline #8782 | Benjamin Peterson | 2010-05-21 | 3 | -0/+17 |
| | |||||
* | #8707: remove duplicate paragraph part. | Georg Brandl | 2010-05-21 | 1 | -8/+3 |
| | |||||
* | fix name | Benjamin Peterson | 2010-05-21 | 1 | -1/+1 |
| | |||||
* | use addCleanup | Benjamin Peterson | 2010-05-21 | 1 | -30/+27 |
| | |||||
* | Add missing parameter in SimpleXMLRPCServer signature. | Georg Brandl | 2010-05-21 | 1 | -1/+1 |
| | |||||
* | typo | Georg Brandl | 2010-05-21 | 1 | -1/+1 |
| | |||||
* | return NotImplemented from Mapping when comparing to a non-mapping #8729 | Benjamin Peterson | 2010-05-21 | 3 | -3/+54 |
| | |||||
* | #8783: replace link to now dead hash collision FAQ. | Georg Brandl | 2010-05-21 | 1 | -2/+2 |
| | |||||
* | Updated logging documentation with more dictConfig information. | Vinay Sajip | 2010-05-21 | 1 | -0/+39 |
| | |||||
* | Issue #5753: A new C API function, :cfunc:`PySys_SetArgvEx`, allows | Antoine Pitrou | 2010-05-21 | 4 | -7/+50 |
| | | | | | | 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>`_. | ||||
* | fix extra 't' #8778 | Benjamin Peterson | 2010-05-20 | 1 | -1/+1 |
| | |||||
* | Turned out that if you used explicit relative import syntax | Brett Cannon | 2010-05-20 | 3 | -1/+17 |
| | | | | | | | | | (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. |