summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Issue #15298: fix an OS X bootstrap issue with _sysconfigdata.py.Trent Nelson2012-10-171-6/+19
| | | | | | | | | | | | Reported by: Ned Deily.
* | | merge for issue #16160: Subclass support now works for types.SimpleNamespace.Eric Snow2012-10-171-0/+9
|\ \ \ | |/ /
| * | Close #16160: Subclass support now works for types.SimpleNamespace. Thanks ↵Eric Snow2012-10-171-0/+9
| | | | | | | | | | | | to RDM for noticing.
* | | Merge for issue #15744: add tests for the writelines() method of file objects.Antoine Pitrou2012-10-162-1/+68
|\ \ \ | |/ /
| * | Merge for issue #15744: add tests for the writelines() method of file objects.Antoine Pitrou2012-10-162-1/+68
| |\ \ | | |/
| | * Also add tests for TextIOWrapper.writelines() (issue #15744).Antoine Pitrou2012-10-161-0/+22
| | |
| | * Add tests for the writelines() method of file objects.Antoine Pitrou2012-10-162-1/+46
| | | | | | | | | | | | Original patch by Felipe Cruz.
* | | Issue #15958: bytes.join and bytearray.join now accept arbitrary buffer objects.Antoine Pitrou2012-10-161-2/+21
| | |
* | | Merge issue #15298: ensure _sysconfigdata is generated in build directory,Trent Nelson2012-10-161-1/+10
|\ \ \ | |/ / | | | | | | | | | | | | not source directory. Patch by: Richard Oudkerk (sbt).
| * | Issue #15298: ensure _sysconfigdata is generated in build directory,Trent Nelson2012-10-161-1/+10
| | | | | | | | | | | | | | | | | | not source directory. Patch by Richard Oudkerk (sbt).
* | | Merge issue #15833: don't raise an exception if importlib can't writeTrent Nelson2012-10-161-7/+7
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | byte-compiled files. This fixes a regression introduced by 3.3. Patch by Charles-François Natali.
| * | Issue #15833: don't raise an exception if importlib can't write byte-compiledTrent Nelson2012-10-161-7/+7
| | | | | | | | | | | | | | | | | | files. This fixes a regression introduced by 3.3. Patch by Charles-François Natali.
* | | Closes #16244: Merged change from 3.3.Vinay Sajip2012-10-161-2/+0
|\ \ \ | |/ /
| * | Issue #16244: Merged change from 3.2.Vinay Sajip2012-10-161-2/+0
| |\ \ | | |/
| | * Issue #16244: Remove file mode overrides.Vinay Sajip2012-10-161-2/+0
| | |
| * | merge 3.2Benjamin Peterson2012-10-123-3/+9
| |\ \ | | |/
| | * skip if __doc__ is goneBenjamin Peterson2012-10-121-0/+1
| | |
| | * fix to work if __doc__ is removedBenjamin Peterson2012-10-121-2/+2
| | |
* | | logging's SocketHandler: get rid of some legacy code and use the newer ↵Giampaolo Rodola'2012-10-151-9/+1
| | | | | | | | | | | | socket.create_connection() utility function
* | | Clean up some warnings in test suite output.Nadeem Vawda2012-10-132-5/+6
| | |
* | | merge headsBenjamin Peterson2012-10-131-15/+16
|\ \ \
| * | | lzma module: Rewrap docstrings at 72 columns, as per PEP 8.Nadeem Vawda2012-10-131-15/+16
| | | |
* | | | When not optimized function stack sizes are much larger and may cause this ↵Benjamin Peterson2012-10-131-1/+2
|/ / / | | | | | | | | | test to fail.
* | | skip if __doc__ is goneBenjamin Peterson2012-10-121-0/+1
| | |
* | | fix to work if __doc__ is removedBenjamin Peterson2012-10-121-2/+2
| | |
* | | Remove uses of % with str.format.Brett Cannon2012-10-121-3/+3
| | |
* | | Merge 3.2Brian Curtin2012-10-111-1/+6
|\ \ \ | | |/ | |/|
| * | Fix #16176. Properly identify Windows 8 via platform.platform()Brian Curtin2012-10-111-1/+6
| | | | | | | | | | | | Add handling of the 6.2 release line, aka Windows 8 and Windows 2012 Server.
* | | Closes #15776: pyvenv now works with existing directories.Vinay Sajip2012-10-112-10/+72
| | |
* | | code smell. remove pdbSenthil Kumaran2012-10-111-1/+0
| | |
* | | Issue #16088: BaseHTTPRequestHandler's send_error method includes aSenthil Kumaran2012-10-112-1/+15
| | | | | | | | | | | | Content-Length header. Patch by Antoine Pitrou.
* | | Closes #16135: Removal of OS/2 support (distutils) (II)Jesus Cea2012-10-101-1/+0
| | |
* | | Closes #16135: Removal of OS/2 support (distutils)Jesus Cea2012-10-1012-425/+7
| | |
* | | Merge fix for issue #15111.Brett Cannon2012-10-102-7/+20
|\ \ \ | | |/ | |/|
| * | Closes issue #15111: Calling __import__ with a module specified inBrett Cannon2012-10-102-7/+20
| | | | | | | | | | | | | | | fromlist which causes its own ImportError (e.g. the module tries to import a non-existent module) should have that exception propagate.
* | | Fixes Issue #16114: The subprocess module no longer provides aGregory P. Smith2012-10-102-8/+49
|\ \ \ | |/ / | | | | | | | | | | | | misleading error message stating that args[0] did not exist when either the cwd or executable keyword arguments specified a path that did not exist.
| * | Fixes Issue #16114: The subprocess module no longer provides aGregory P. Smith2012-10-102-8/+49
| |\ \ | | |/ | | | | | | | | | | | | misleading error message stating that args[0] did not exist when either the cwd or executable keyword arguments specified a path that did not exist.
| | * Fixes Issue #16114: The subprocess module no longer provides aGregory P. Smith2012-10-102-8/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | misleading error message stating that args[0] did not exist when either the cwd or executable keyword arguments specified a path that did not exist. It now keeps track of if the child got as far as preexec and reports it if not back to the parent via a special "noexec" error message value in the error pipe so that the cwd can be blamed for a failed chdir instead of the exec of the executable being blamed instead. The executable is also always reported accurately when exec fails. Unittests enhanced to cover these cases.
* | | Issue #16170: Merge subprocess test unskip from 3.3.Chris Jerdonek2012-10-091-5/+8
|\ \ \ | |/ /
| * | Issue #16170: Remove Linux skip from test_subprocess's test_executable test.Chris Jerdonek2012-10-091-5/+8
| | |
| * | merge headsBenjamin Peterson2012-10-0918-92/+318
| |\ \
* | \ \ merge 3.3Benjamin Peterson2012-10-098-15/+11
|\ \ \ \ | |/ / /
| * | | compare singletons by identity not equality (closes #16712)Benjamin Peterson2012-10-097-9/+9
| | | | | | | | | | | | | | | | Patch from Serhiy Storchaka.
| * | | compare with equality not identity (issue #16172)Benjamin Peterson2012-10-091-6/+2
| | | | | | | | | | | | | | | | Patch from Serhiy Storchaka.
* | | | Issue #16169: MergeRichard Oudkerk2012-10-092-1/+23
|\ \ \ \ | | |/ / | |/| |
| * | | Issue #16169: Fix ctypes.WinError()'s confusion between errno and winerrorRichard Oudkerk2012-10-092-1/+23
| | | |
* | | | Closes #16110: fileConfig now accepts a pre-initialised ConfigParser instance.Vinay Sajip2012-10-092-4/+26
| | | |
* | | | Closes #16168: Merged SysLogHandler update from 3.3.Vinay Sajip2012-10-091-8/+2
|\ \ \ \ | |/ / /
| * | | Issue #16168: Merged SysLogHandler update from 3.2.Vinay Sajip2012-10-091-8/+2
| |\ \ \ | | | |/ | | |/|
| | * | Issue #16168: Use specified socket type for domain sockets in SysLogHandler.Vinay Sajip2012-10-091-8/+2
| | | |