Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | test_pep277: disable filenames 11, 12, 13, 14 on darwin | Victor Stinner | 2010-10-28 | 1 | -5/+6 |
| | | | | | Because darwin "normalizes" these filenames differently than Python's NFD normalization. | ||||
* | Issue #5437: A preallocated MemoryError instance should not hold traceback | Antoine Pitrou | 2010-10-28 | 1 | -0/+39 |
| | | | | data (including local variables caught in the stack trace) alive infinitely. | ||||
* | Fixed a typo in a comment. | Alexander Belopolsky | 2010-10-28 | 1 | -1/+1 |
| | |||||
* | #10116: wrap transient_internet() around net access in test_urllib2net. | Georg Brandl | 2010-10-28 | 1 | -69/+85 |
| | |||||
* | Fix typo from r85874 | Éric Araujo | 2010-10-28 | 1 | -1/+1 |
| | |||||
* | Support new Condition return value in the multiprocessing version. | Georg Brandl | 2010-10-28 | 1 | -1/+2 |
| | |||||
* | test_pep277: add identifiers to filenames | Victor Stinner | 2010-10-28 | 1 | -19/+19 |
| | |||||
* | test_pep277: format filename with ascii() on failure | Victor Stinner | 2010-10-28 | 1 | -1/+1 |
| | | | | "%a" instead of "%r" | ||||
* | test_pep277: format function argument with ascii() on failure | Victor Stinner | 2010-10-28 | 1 | -1/+1 |
| | | | | "%a" instead of "%r" | ||||
* | issue 8777 | Kristján Valur Jónsson | 2010-10-28 | 3 | -0/+365 |
| | | | | Add threading.Barrier | ||||
* | Condition.wait now returns bool. | Georg Brandl | 2010-10-28 | 1 | -1/+1 |
| | |||||
* | #10218: return timeout status from Condition.wait, mirroring other ↵ | Georg Brandl | 2010-10-28 | 2 | -13/+21 |
| | | | | primitives' behavior. | ||||
* | #7351: add more consistent exception name alias. | Georg Brandl | 2010-10-28 | 2 | -25/+26 |
| | |||||
* | Recode modules from latin-1 to utf-8 | Antoine Pitrou | 2010-10-27 | 4 | -12/+9 |
| | |||||
* | Issue #5027: The standard `xml` namespace is now understood by | Antoine Pitrou | 2010-10-27 | 2 | -0/+61 |
| | | | | | xml.sax.saxutils.XMLGenerator as being bound to http://www.w3.org/XML/1998/namespace. Patch by Troy J. Farrell. | ||||
* | Issue #10193: Simplified instrospection used by turtle module | Alexander Belopolsky | 2010-10-27 | 1 | -20/+25 |
| | |||||
* | #5975: add unix_dialect to csv module. | Georg Brandl | 2010-10-27 | 2 | -1/+20 |
| | |||||
* | logging: Improved Formatter implementation. | Vinay Sajip | 2010-10-26 | 2 | -29/+68 |
| | |||||
* | #7761: fix telnetlib.interact failures on Windows. | R. David Murray | 2010-10-26 | 1 | -2/+2 |
| | |||||
* | Fix issue10192 - add urlencode to urllib.parse.__all__ | Senthil Kumaran | 2010-10-25 | 1 | -2/+2 |
| | |||||
* | logging: Formatter implementation tweak. | Vinay Sajip | 2010-10-25 | 1 | -8/+12 |
| | |||||
* | logging: Added style option to Formatter to allow %, {} or himBHformatting. | Vinay Sajip | 2010-10-25 | 2 | -5/+82 |
| | |||||
* | test_gdb should be skipped on darwin (not up to v7 yet) | Skip Montanaro | 2010-10-25 | 1 | -0/+1 |
| | |||||
* | str.encode() doesn't accept None as errors: use 'strict' instead | Victor Stinner | 2010-10-24 | 1 | -1/+1 |
| | |||||
* | Issue #10161: test_pep277 formats filenames with ascii() on error | Victor Stinner | 2010-10-24 | 1 | -1/+1 |
| | | | | | As suggested by Antoine, it's better to patch only test_pep277 than the unittest module. | ||||
* | os: fsencode(), fsdecode() and os.environ(b) internal encode-decode methods | Victor Stinner | 2010-10-24 | 1 | -32/+37 |
| | | | | | | | keep a local copy of the fileystem encoding, instead of calling sys.getfilesystemencoding() each time. The filesystem encoding is now constant. | ||||
* | Add a new warning gategory, ResourceWarning, as discussed on python-dev. It ↵ | Georg Brandl | 2010-10-24 | 3 | -3/+13 |
| | | | | | | | | is silent by default, except when configured --with-pydebug. Emit this warning from the GC shutdown procedure, rather than just printing to stderr. | ||||
* | Remove usage of exception indexing. | Georg Brandl | 2010-10-24 | 1 | -1/+1 |
| | |||||
* | Issue 5178: Add tempfile.TemporaryDirectory (original patch by Neil Schemenauer) | Nick Coghlan | 2010-10-24 | 2 | -2/+167 |
| | |||||
* | remove broken code accounting an offset the size of the line #10186 | Benjamin Peterson | 2010-10-24 | 1 | -0/+6 |
| | |||||
* | #1349106: add linesep argument to generator.flatten and header.encode. | R. David Murray | 2010-10-23 | 4 | -37/+80 |
| | |||||
* | Revert r85801. The test ought to pass without rounding. | Martin v. Löwis | 2010-10-23 | 1 | -1/+1 |
| | |||||
* | Follow up to #9778: fix regressions on 64-bit Windows builds | Antoine Pitrou | 2010-10-23 | 1 | -1/+1 |
| | |||||
* | #6518: enable context manager protocol for ossaudiodev types. | Georg Brandl | 2010-10-23 | 1 | -4/+6 |
| | |||||
* | Also guard other SOCK_NONBLOCK test | Antoine Pitrou | 2010-10-23 | 1 | -9/+13 |
| | |||||
* | Issue #6011: sysconfig and distutils.sysconfig use the surrogateescape error | Victor Stinner | 2010-10-23 | 3 | -3/+6 |
| | | | | | | handler to parse the Makefile file. Avoid a UnicodeDecodeError if the source code directory name contains a non-ASCII character and the locale encoding is ASCII. | ||||
* | Fix SOCK_CLOEXEC and SOCK_NONBLOCK tests on recent glibcs with old Linux ↵ | Antoine Pitrou | 2010-10-23 | 1 | -0/+18 |
| | | | | kernels. | ||||
* | Try to fix test_tarfile on AMD64 debian parallel 3.x | Victor Stinner | 2010-10-23 | 1 | -1/+1 |
| | | | | | tarinfo.mtime is an int, whereas getmtime() is a float and it might be different by something like 3 µs. | ||||
* | Revert r85797 (and r85798): it broke the Windows buildbots because of | Antoine Pitrou | 2010-10-22 | 1 | -20/+1 |
| | | | | test_multiprocessing's misbehaviour. | ||||
* | Issue #9935: Speed up pickling of instances of user-defined classes. | Antoine Pitrou | 2010-10-22 | 1 | -1/+20 |
| | |||||
* | Fix test_ssl on Ubuntu buildbot with patched OpenSSL | Antoine Pitrou | 2010-10-22 | 1 | -0/+1 |
| | |||||
* | Issue #5639: Add a *server_hostname* argument to `SSLContext.wrap_socket` | Antoine Pitrou | 2010-10-22 | 4 | -8/+60 |
| | | | | | | in order to support the TLS SNI extension. `HTTPSConnection` and `urlopen()` also use this argument, so that HTTPS virtual hosts are now supported. | ||||
* | Only hack cmd.library_dirs when running under Py_ENABLE_SHARED. Tested both | Barry Warsaw | 2010-10-22 | 1 | -1/+2 |
| | | | | | with and without --enable-shared on Ubuntu 10.10. Hopefully this finally solves bug 10126. Will check 3.1 next. | ||||
* | Refactor interesting use of try-finally. | Georg Brandl | 2010-10-22 | 1 | -10/+9 |
| | |||||
* | Make top_level attribute a set instead of a dict with None values. | Georg Brandl | 2010-10-22 | 1 | -5/+5 |
| | |||||
* | #10166: rewrite self-recursion to iteration in pstats.Stats.add(). Also add ↵ | Georg Brandl | 2010-10-22 | 3 | -27/+42 |
| | | | | a unittest and a stats test file. | ||||
* | Apply fix from r85784 on py3k too. | Éric Araujo | 2010-10-21 | 1 | -2/+6 |
| | | | | | | | Fixes bug #10126 for Python 3.2 by using $RUNSHARED to find the directory to the shared library. test_distutils now passes when Python was built with --enable-shared (Barry didn’t have the error but I did). | ||||
* | Fix r85774 editor fail. Had a dangling try and incorrect indent. | Brian Curtin | 2010-10-21 | 1 | -2/+1 |
| | |||||
* | Fix #10162: Add try/except around _winreg.OpenKey for keys that are | Brian Curtin | 2010-10-21 | 1 | -8/+10 |
| | | | | | | | | unreadable by all users, e.g., Flash, Silverlight, and Java keys were causing errors. We don't currently have a way to grant/deny permissions for a key via winreg so there are no tests for this. | ||||
* | Issue #10089: Add support for arbitrary -X options on the command-line. | Antoine Pitrou | 2010-10-21 | 1 | -0/+9 |
| | | | | They can be retrieved through a new attribute `sys._xoptions`. |