Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Review symtable docs. | Georg Brandl | 2008-08-16 | 1 | -11/+10 |
| | |||||
* | include filename and line number in SyntaxError | Benjamin Peterson | 2008-08-16 | 2 | -1/+4 |
| | |||||
* | Silence DeprecationWarning raised by mimetools and rfc822 in cgi. | Brett Cannon | 2008-08-16 | 2 | -3/+10 |
| | |||||
* | Silence the DeprecationWarning raised in httplib when mimetools is imported. | Brett Cannon | 2008-08-16 | 2 | -2/+6 |
| | |||||
* | Silence the DeprecationWarning raised by importing mimetools in BaseHTTPServer. | Brett Cannon | 2008-08-16 | 2 | -1/+9 |
| | | | | | | This does have an unfortunate side-effect of silencing the warning for all subsequent code that imports mimetools as well since the warning is only executed upon the first import of mimetools. | ||||
* | add some documentation for symtable | Benjamin Peterson | 2008-08-16 | 2 | -0/+189 |
| | |||||
* | #3424 rearrange the order of tests in imghdr to place more common types first | Benjamin Peterson | 2008-08-16 | 1 | -32/+32 |
| | |||||
* | Issue #2776: fixed small issue when handling an URL with double slash | Facundo Batista | 2008-08-16 | 3 | -3/+38 |
| | | | | after a 302 response in the case of not going through a proxy. | ||||
* | note how os.utime should be used for emulating touch | Benjamin Peterson | 2008-08-16 | 1 | -9/+10 |
| | |||||
* | fix markup | Benjamin Peterson | 2008-08-16 | 1 | -0/+1 |
| | |||||
* | Merged revisions 65397 via svnmerge from | Benjamin Peterson | 2008-08-15 | 1 | -18/+17 |
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r65397 | collin.winter | 2008-08-01 22:39:06 -0500 (Fri, 01 Aug 2008) | 5 lines Patch #3480 by Nick Edds. Dramatically simplifies the fix_imports pattern, resulting in a reduction of the test_all_fixers runtime from 122+ secs to 59 secs (a good predictor of 2to3 performance). ........ | ||||
* | document that waitpid raises OSError | Gregory P. Smith | 2008-08-15 | 1 | -0/+3 |
| | |||||
* | #2676: email/message.py [Message.get_content_type]: Trivial regex hangs on ↵ | Antoine Pitrou | 2008-08-15 | 2 | -7/+15 |
| | | | | pathological input | ||||
* | #3558: Attribute reference binds more tightly than subscription and call. | Georg Brandl | 2008-08-15 | 1 | -3/+3 |
| | |||||
* | Issue #3476: make BufferedReader and BufferedWriter thread-safe | Antoine Pitrou | 2008-08-14 | 3 | -40/+144 |
| | |||||
* | Disable the test until I have one that works. | Thomas Heller | 2008-08-14 | 1 | -9/+9 |
| | |||||
* | Fix memory leak: Always DECREF obj in PyBuffer_Release. | Martin v. Löwis | 2008-08-14 | 1 | -5/+3 |
| | |||||
* | Try to fix the test on 64-bit platforms. | Thomas Heller | 2008-08-14 | 1 | -5/+4 |
| | |||||
* | issue #3554: ctypes.string_at and ctypes.wstring_at must use the | Thomas Heller | 2008-08-14 | 3 | -2/+17 |
| | | | | | pythonapi calling convention so that the GIL is held and error return values are checked. | ||||
* | Issue 1432. Fixes a bug caused because of the evolution | Facundo Batista | 2008-08-14 | 2 | -5/+21 |
| | | | | | of the RFC that describes the behaviour. Note that we now have the same behaviour than the current browsers. | ||||
* | Properly INCREF reference in Py_buffer. | Martin v. Löwis | 2008-08-14 | 1 | -0/+2 |
| | |||||
* | Make obj an owned reference in Py_buffer; this checkin | Martin v. Löwis | 2008-08-14 | 1 | -1/+4 |
| | | | | was missing from the patch for #3139. | ||||
* | Added _multiprocessing module support. (VC6) | Hirokazu Yamamoto | 2008-08-14 | 2 | -0/+130 |
| | |||||
* | Fix markup for various binary operation examples where the operands were bolded | Brett Cannon | 2008-08-14 | 1 | -6/+6 |
| | | | | | and the operator was made literal, leading to non-valid reST. Changed to have the entire expression just be a literal bit of text. | ||||
* | Fixed test_distutils error (test_build_ext) on VC6. | Hirokazu Yamamoto | 2008-08-14 | 1 | -1/+4 |
| | |||||
* | Silence the DeprecationWarning of rfc822 triggered by its importation in | Brett Cannon | 2008-08-14 | 2 | -1/+9 |
| | | | | | | | | | | | | mimetools. This has an unfortunate side-effect of potentially not letting any warning about rfc822's deprecation be seen by user-visible code if rfc822 is not imported before mimetools. This is because modules are cached in sys.modules and thus do not have their deprecation triggered more than once. But this silencing would have happened by other code that silences the use of mimetools or rfc822 anyway in the stdlib or user code, and thus seems justified to be done here. | ||||
* | Issue #2065: VC6 related fix. | Hirokazu Yamamoto | 2008-08-14 | 8 | -45/+169 |
| | | | | | | | | | | | | | | | | | | | | - PC/VC6/_bsddb.dsp: removed '/nodefaultlib:"msvcrt"' to fix linker error. - PC/VC6/_msi.dsp, PC/VC6/pcbuild.dsw: added new module support. - PC/VC6/_sqlite3.dsp: /D "MODULE_NAME=\"sqlite3\"" caused extra leading space like #define MODULE_NAME " sqlite3" so uses /D MODULE_NAME=\"sqlite3\" instead. - PC/VC6/python.dsp: changed stack size to 2MB to avoid stack overflow on some tests. | ||||
* | Add Hirokazu Yamamoto. | Martin v. Löwis | 2008-08-12 | 1 | -0/+3 |
| | |||||
* | update ssl documentation | Bill Janssen | 2008-08-12 | 1 | -0/+9 |
| | |||||
* | remove duplicate close() from ssl.py; expose unwrap and add test for it | Bill Janssen | 2008-08-12 | 2 | -6/+25 |
| | |||||
* | Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple, | Martin v. Löwis | 2008-08-12 | 16 | -272/+459 |
| | | | | | | | by denying s# to parse objects that have a releasebuffer procedure, and introducing s*. More module might need to get converted to use s*. | ||||
* | Another fix for 4-way universal builds, use the right #ifndef guard | Ronald Oussoren | 2008-08-12 | 2 | -2/+2 |
| | | | | to detect the OSX 10.5 SDK. | ||||
* | Fix typo in the `arch` commandline | Ronald Oussoren | 2008-08-12 | 2 | -3/+3 |
| | |||||
* | Fix the connection refused error part of issue 3419, use errno module ↵ | Jesse Noller | 2008-08-11 | 1 | -1/+2 |
| | | | | instead of a static list of possible connection refused messages. | ||||
* | #3134: shutil referenced undefined WindowsError symbol | Antoine Pitrou | 2008-08-11 | 2 | -4/+12 |
| | |||||
* | Issue 2235: Py3k warnings are now emitted for classes that will no longer ↵ | Nick Coghlan | 2008-08-11 | 18 | -18/+165 |
| | | | | inherit a__hash__ implementation from a parent class in Python 3.x. The standard library and test suite have been updated to not emit these warnings. | ||||
* | Remove the fqdn call for issue 3270 | Jesse Noller | 2008-08-11 | 1 | -4/+1 |
| | |||||
* | #3540: fix exception name. | Georg Brandl | 2008-08-11 | 1 | -1/+1 |
| | |||||
* | - Issue #3537: Fix an assertion failure when an empty but presized dict | Georg Brandl | 2008-08-11 | 3 | -0/+18 |
| | | | | object was stored in the freelist. | ||||
* | Issue #1342811: Fix leak in Tkinter.Menu.delete. Commands associated to | Robert Schuppenies | 2008-08-10 | 2 | -0/+13 |
| | | | | menu entries were not deleted. | ||||
* | Silence warnings in csv about using reduce() when run under -3 by using | Brett Cannon | 2008-08-09 | 2 | -4/+5 |
| | | | | functools.reduce() instead. | ||||
* | Use functools.reduce() in difflib instead of __builtin__.reduce() to silence | Brett Cannon | 2008-08-09 | 2 | -5/+6 |
| | | | | warnings when running under -3. | ||||
* | Copy reduce() to _functools so to have functools.reduce() not raise a warning | Brett Cannon | 2008-08-09 | 4 | -3/+127 |
| | | | | from usage under -3. | ||||
* | Suppress the warning in asynchat from using buffer() when running udner -3. | Brett Cannon | 2008-08-09 | 2 | -2/+6 |
| | | | | | Naively removing the usage causes a large number of test failures, so it was just easier to suppress the warning. | ||||
* | move NEWS entry to the appropriate section (oops!) | Antoine Pitrou | 2008-08-09 | 1 | -3/+3 |
| | |||||
* | #3205: bz2 iterator fails silently on MemoryError | Antoine Pitrou | 2008-08-09 | 2 | -0/+4 |
| | |||||
* | Add news item about _sre.compile() re-bytecode validator. | Guido van Rossum | 2008-08-09 | 1 | -0/+4 |
| | |||||
* | Fix slightly misleading statement in the NEWS file. | Antoine Pitrou | 2008-08-09 | 1 | -1/+2 |
| | |||||
* | accept issue 3436 | Skip Montanaro | 2008-08-08 | 4 | -4/+67 |
| | |||||
* | Remove mention of backquotes in the tutorial. | Georg Brandl | 2008-08-08 | 1 | -6/+1 |
| |