summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Review symtable docs.Georg Brandl2008-08-161-11/+10
|
* include filename and line number in SyntaxErrorBenjamin Peterson2008-08-162-1/+4
|
* Silence DeprecationWarning raised by mimetools and rfc822 in cgi.Brett Cannon2008-08-162-3/+10
|
* Silence the DeprecationWarning raised in httplib when mimetools is imported.Brett Cannon2008-08-162-2/+6
|
* Silence the DeprecationWarning raised by importing mimetools in BaseHTTPServer.Brett Cannon2008-08-162-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 symtableBenjamin Peterson2008-08-162-0/+189
|
* #3424 rearrange the order of tests in imghdr to place more common types firstBenjamin Peterson2008-08-161-32/+32
|
* Issue #2776: fixed small issue when handling an URL with double slashFacundo Batista2008-08-163-3/+38
| | | | after a 302 response in the case of not going through a proxy.
* note how os.utime should be used for emulating touchBenjamin Peterson2008-08-161-9/+10
|
* fix markupBenjamin Peterson2008-08-161-0/+1
|
* Merged revisions 65397 via svnmerge fromBenjamin Peterson2008-08-151-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 OSErrorGregory P. Smith2008-08-151-0/+3
|
* #2676: email/message.py [Message.get_content_type]: Trivial regex hangs on ↵Antoine Pitrou2008-08-152-7/+15
| | | | pathological input
* #3558: Attribute reference binds more tightly than subscription and call.Georg Brandl2008-08-151-3/+3
|
* Issue #3476: make BufferedReader and BufferedWriter thread-safeAntoine Pitrou2008-08-143-40/+144
|
* Disable the test until I have one that works.Thomas Heller2008-08-141-9/+9
|
* Fix memory leak: Always DECREF obj in PyBuffer_Release.Martin v. Löwis2008-08-141-5/+3
|
* Try to fix the test on 64-bit platforms.Thomas Heller2008-08-141-5/+4
|
* issue #3554: ctypes.string_at and ctypes.wstring_at must use theThomas Heller2008-08-143-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 evolutionFacundo Batista2008-08-142-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öwis2008-08-141-0/+2
|
* Make obj an owned reference in Py_buffer; this checkinMartin v. Löwis2008-08-141-1/+4
| | | | was missing from the patch for #3139.
* Added _multiprocessing module support. (VC6)Hirokazu Yamamoto2008-08-142-0/+130
|
* Fix markup for various binary operation examples where the operands were boldedBrett Cannon2008-08-141-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 Yamamoto2008-08-141-1/+4
|
* Silence the DeprecationWarning of rfc822 triggered by its importation inBrett Cannon2008-08-142-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 Yamamoto2008-08-148-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öwis2008-08-121-0/+3
|
* update ssl documentationBill Janssen2008-08-121-0/+9
|
* remove duplicate close() from ssl.py; expose unwrap and add test for itBill Janssen2008-08-122-6/+25
|
* Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple,Martin v. Löwis2008-08-1216-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 guardRonald Oussoren2008-08-122-2/+2
| | | | to detect the OSX 10.5 SDK.
* Fix typo in the `arch` commandlineRonald Oussoren2008-08-122-3/+3
|
* Fix the connection refused error part of issue 3419, use errno module ↵Jesse Noller2008-08-111-1/+2
| | | | instead of a static list of possible connection refused messages.
* #3134: shutil referenced undefined WindowsError symbolAntoine Pitrou2008-08-112-4/+12
|
* Issue 2235: Py3k warnings are now emitted for classes that will no longer ↵Nick Coghlan2008-08-1118-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 3270Jesse Noller2008-08-111-4/+1
|
* #3540: fix exception name.Georg Brandl2008-08-111-1/+1
|
* - Issue #3537: Fix an assertion failure when an empty but presized dictGeorg Brandl2008-08-113-0/+18
| | | | object was stored in the freelist.
* Issue #1342811: Fix leak in Tkinter.Menu.delete. Commands associated toRobert Schuppenies2008-08-102-0/+13
| | | | menu entries were not deleted.
* Silence warnings in csv about using reduce() when run under -3 by usingBrett Cannon2008-08-092-4/+5
| | | | functools.reduce() instead.
* Use functools.reduce() in difflib instead of __builtin__.reduce() to silenceBrett Cannon2008-08-092-5/+6
| | | | warnings when running under -3.
* Copy reduce() to _functools so to have functools.reduce() not raise a warningBrett Cannon2008-08-094-3/+127
| | | | from usage under -3.
* Suppress the warning in asynchat from using buffer() when running udner -3.Brett Cannon2008-08-092-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 Pitrou2008-08-091-3/+3
|
* #3205: bz2 iterator fails silently on MemoryErrorAntoine Pitrou2008-08-092-0/+4
|
* Add news item about _sre.compile() re-bytecode validator.Guido van Rossum2008-08-091-0/+4
|
* Fix slightly misleading statement in the NEWS file.Antoine Pitrou2008-08-091-1/+2
|
* accept issue 3436Skip Montanaro2008-08-084-4/+67
|
* Remove mention of backquotes in the tutorial.Georg Brandl2008-08-081-6/+1
|