Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #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 |
| | |||||
* | Review new Barrier docs. | Georg Brandl | 2010-10-28 | 1 | -42/+40 |
| | |||||
* | 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 | 4 | -0/+469 |
| | | | | 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 | 4 | -13/+29 |
| | | | | primitives' behavior. | ||||
* | Fix bytes/str issues in get-remote-certificate.py. | Georg Brandl | 2010-10-28 | 1 | -7/+11 |
| | |||||
* | #7351: add more consistent exception name alias. | Georg Brandl | 2010-10-28 | 4 | -26/+38 |
| | |||||
* | Issue #8852: Allow the socket module to build on OpenSolaris. | Antoine Pitrou | 2010-10-27 | 2 | -12/+30 |
| | |||||
* | Add David. | Georg Brandl | 2010-10-27 | 1 | -0/+3 |
| | |||||
* | In open(), only set the buffer size from st.st_blksize when it is greater | Antoine Pitrou | 2010-10-27 | 1 | -1/+1 |
| | | | | | than 1. This matches the pure Python implementation in _pyio and should fix a couple of failures on the NetBSD buildbot. | ||||
* | 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 | 4 | -0/+66 |
| | | | | | 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 | 4 | -2/+32 |
| | |||||
* | Encoding fix. | Georg Brandl | 2010-10-27 | 1 | -1/+1 |
| | |||||
* | Issue #7061: Dropped "for Tk" from turtle module title and moved its | Alexander Belopolsky | 2010-10-27 | 7 | -14/+10 |
| | | | | | doc section under frameworks. Also fixed a couple of markup issues that affected TOC rendering. | ||||
* | Simplify PyUnicode_Encode/DecodeFSDefault on Windows/Mac OS X | Victor Stinner | 2010-10-27 | 1 | -16/+18 |
| | | | | | * Windows always uses mbcs * Mac OS X always uses utf-8 | ||||
* | Fix import. | Georg Brandl | 2010-10-26 | 1 | -2/+2 |
| | |||||
* | #10200: typo. | Georg Brandl | 2010-10-26 | 1 | -1/+1 |
| | |||||
* | #10200: typo. | Georg Brandl | 2010-10-26 | 1 | -1/+1 |
| | |||||
* | 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 | 2 | -2/+4 |
| | |||||
* | faqwiz is removed. | Georg Brandl | 2010-10-26 | 1 | -2/+1 |
| | |||||
* | Work a bit more on tkinter demos. | Georg Brandl | 2010-10-26 | 9 | -87/+96 |
| | |||||
* | Markup fix. | Georg Brandl | 2010-10-26 | 1 | -1/+1 |
| | |||||
* | #3018: tkinter demo fixes for py3k. | Georg Brandl | 2010-10-25 | 18 | -179/+196 |
| | |||||
* | sys_update_path(): update sys.path even if argc==0 | Victor Stinner | 2010-10-25 | 1 | -2/+0 |
| | |||||
* | update gitignore | Victor Stinner | 2010-10-25 | 1 | -0/+26 |
| | |||||
* | 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 | 4 | -12/+103 |
| | |||||
* | Issue #10143: Update "os.pathconf" values | Jesus Cea | 2010-10-25 | 2 | -1/+36 |
| | |||||
* | 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. | ||||
* | These are true PyCFunctions, after adding the second argument to oss_self, ↵ | Georg Brandl | 2010-10-24 | 1 | -5/+5 |
| | | | | no need to cast. | ||||
* | Issue #8761: Mangle PyUnicode_CompareWithASCIIString function name for | Victor Stinner | 2010-10-24 | 1 | -2/+2 |
| | | | | narrow/wide unicode build. | ||||
* | 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 documentation about the default warnings filters. | Georg Brandl | 2010-10-24 | 1 | -3/+21 |
| | |||||
* | Add a new warning gategory, ResourceWarning, as discussed on python-dev. It ↵ | Georg Brandl | 2010-10-24 | 12 | -30/+80 |
| | | | | | | | | is silent by default, except when configured --with-pydebug. Emit this warning from the GC shutdown procedure, rather than just printing to stderr. | ||||
* | Fix style. | Georg Brandl | 2010-10-24 | 2 | -3/+4 |
| | |||||
* | Add casts (one needed, one for consistency). | Georg Brandl | 2010-10-24 | 1 | -4/+4 |
| | |||||
* | 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 | 5 | -3/+229 |
| | |||||
* | tighten loop | Benjamin Peterson | 2010-10-24 | 1 | -4/+1 |
| |