summaryrefslogtreecommitdiffstats
path: root/PC
Commit message (Collapse)AuthorAgeFilesLines
* Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under ↵Antoine Pitrou2012-03-111-0/+1
|\ | | | | | | Windows when the child process has already exited.
| * Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under ↵Antoine Pitrou2012-03-111-0/+1
| | | | | | | | Windows when the child process has already exited.
* | Update copyright years and version name.v3.3.0a1Georg Brandl2012-03-041-1/+1
| |
* | merge 3.2Benjamin Peterson2012-02-241-1/+1
|\ \ | |/
| * Update copyright year.v3.2.3rc1Georg Brandl2012-02-231-1/+1
| |
* | Use GetModuleHandleW to avoid *A functions where possible.Martin v. Löwis2012-01-142-5/+5
| |
* | Use the new Unicode APIVictor Stinner2011-11-225-23/+20
| | | | | | | | | | | | | | | | * Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0) * Replce PyUnicode_FromUnicode(str, len) by PyUnicode_FromWideChar(str, len) * Replace Py_UNICODE by wchar_t * posix_putenv() uses PyUnicode_FromFormat() to create the string, instead of PyUnicode_FromUnicode() + _snwprintf()
* | winreg module avoids the deprecated Unicode APIVictor Stinner2011-11-211-24/+36
| |
* | Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH()Victor Stinner2011-11-211-2/+1
| | | | | | | | And PyUnicode_GetSize() => PyUnicode_GetLength()
* | Fix a typo in PC/_subprocess.cVictor Stinner2011-11-211-1/+1
| |
* | Check for PyUnicode_AS_UNICODE() failureVictor Stinner2011-11-212-4/+27
| |
* | Merge #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are ↵Nadeem Vawda2011-10-171-0/+3
|\ \ | |/ | | | | now available on Windows.
| * Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are ↵Nadeem Vawda2011-10-171-0/+3
| | | | | | | | now available on Windows.
* | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-2/+2
| |
* | Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-2/+6
| | | | | | | | Thanks to Konrad Schöbel and Jasper Schulz for helping with the mass-editing.
* | Issue #13063: the Windows error ERROR_NO_DATA (numbered 232 and describedAntoine Pitrou2011-10-072-0/+4
|\ \ | |/ | | | | | | as "The pipe is being closed") is now mapped to POSIX errno EPIPE (previously EINVAL).
| * Issue #13063: the Windows error ERROR_NO_DATA (numbered 232 and describedAntoine Pitrou2011-10-072-0/+4
| | | | | | | | | | as "The pipe is being closed") is now mapped to POSIX errno EPIPE (previously EINVAL).
* | Issue #12911: Fix memory consumption when calculating the repr() of huge ↵Antoine Pitrou2011-10-063-0/+15
|\ \ | |/ | | | | | | | | | | tuples or lists. This introduces a small private API for this common pattern. The issue has been discovered thanks to Martin's huge-mem buildbot.
| * Issue #12911: Fix memory consumption when calculating the repr() of huge ↵Antoine Pitrou2011-10-063-0/+15
| | | | | | | | | | | | | | tuples or lists. This introduces a small private API for this common pattern. The issue has been discovered thanks to Martin's huge-mem buildbot.
* | Use the new Py_ARRAY_LENGTH macroVictor Stinner2011-09-282-5/+5
| |
* | Implement PEP 393.Martin v. Löwis2011-09-285-47/+36
| |
* | Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is nowAntoine Pitrou2011-09-012-6/+16
|\ \ | |/ | | | | mapped to POSIX errno ENOTDIR (previously EINVAL).
| * Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is nowAntoine Pitrou2011-09-012-6/+16
| | | | | | | | mapped to POSIX errno ENOTDIR (previously EINVAL).
* | Issue #11863: Remove support for legacy systems deprecated in Python 3.2Antoine Pitrou2011-07-081-3/+0
| | | | | | | | | | (following PEP 11). These systems are systems using Mach C Threads, SunOS lightweight processes, GNU pth threads and IRIX threads.
* | Issue #11743: Rewrite multiprocessing connection classes in pure Python.Antoine Pitrou2011-05-092-20/+0
| |
* | Issue #11918: OS/2 and VMS are no more supported because of the lack ofVictor Stinner2011-04-261-0/+2
| | | | | | | | maintainer.
* | Issue #11393: Add the new faulthandler moduleVictor Stinner2011-03-301-0/+2
| |
* | Issue #3080: _PyWin_FindRegisteredModule() returns the path as UnicodeVictor Stinner2011-03-081-50/+71
| | | | | | | | | | | | | | | | | | * Document the function * Use RegQueryValueW() instead of RegQueryValueA() * Use _Py_fopen() instead of fopen() * Allocate registry key on the heap, not on the stack, and handle memory allocation failure * Handle Python exception in find_module()
* | #11565: Merge with 3.2.Ezio Melotti2011-03-164-6/+6
|\ \ | |/
| * #11565: Merge with 3.1.Ezio Melotti2011-03-164-6/+6
| |\
| | * #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-164-6/+6
| | |
* | | #11515: Merge with 3.2.Ezio Melotti2011-03-151-1/+1
|\ \ \ | |/ /
| * | #11515: Merge with 3.1.Ezio Melotti2011-03-151-1/+1
| |\ \ | | |/
| | * #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
| | |
* | | Add a 'timeout' argument to subprocess.Popen.Reid Kleckner2011-03-141-0/+1
| | | | | | | | | | | | | | | | | | | | | If the timeout expires before the subprocess exits, the wait method and the communicate method will raise a subprocess.TimeoutExpired exception. When used with communicate, it is possible to catch the exception, kill the process, and retry the communicate and receive any output written to stdout or stderr.
* | | Convert DOS files to CRLF. This doesn't touch the .hgeol settings, so that ↵Martin v. Löwis2011-03-0648-20171/+20171
|\ \ \ | |/ / | | | | | | | | | | | | the files will have the right line ending even if the extension is not active.
| * | Convert DOS files to CRLF. This doesn't touch the .hgeol settings, so that ↵Martin v. Löwis2011-03-0678-24142/+24142
| |\ \ | | |/ | | | | | | | | | | | | the files will have the right line ending even if the extension is not active.
| | * Convert DOS files to CRLF. This doesn't touch the .hgeol settings, so that ↵Martin v. Löwis2011-03-0675-23682/+23682
| | | | | | | | | | | | | | | | | | the files will have the right line ending even if the extension is not active.
| | * Add updated .hgeol file and fix newlines in the 3.1 branch.Georg Brandl2011-03-0528-2672/+2672
| | |
| | * Merged revisions 85071-85072,85894,87132 via svnmerge fromHirokazu Yamamoto2010-12-093-23/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85071 | hirokazu.yamamoto | 2010-09-29 03:29:57 +0900 (水, 29 9 2010) | 1 line Now perl path with spaces can be used. ........ r85072 | hirokazu.yamamoto | 2010-09-29 03:36:04 +0900 (水, 29 9 2010) | 1 line Updated PC/VC6 openssl build script. (for openssl-1.0.0a) ........ r85894 | hirokazu.yamamoto | 2010-10-29 02:57:25 +0900 (金, 29 10 2010) | 1 line Updated readme.txt about OpenSSL. ........ r87132 | hirokazu.yamamoto | 2010-12-08 23:47:07 +0900 (水, 08 12 2010) | 3 lines Mention NASM which is needed to build openssl-1.0.0a original source. (PC/VC6/readme.txt) ........
| | * Merged revisions 86283 via svnmerge fromHirokazu Yamamoto2010-11-071-7/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86283 | hirokazu.yamamoto | 2010-11-07 18:23:15 +0900 | 1 line Issue #6317: Now winsound.PlaySound can accept non ascii filename. ........
| | * Merged revisions 86281,86285 via svnmerge fromHirokazu Yamamoto2010-11-071-17/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86281 | hirokazu.yamamoto | 2010-11-07 11:45:19 +0900 | 1 line Formatted code. (Tabify, etc) ........ r86285 | hirokazu.yamamoto | 2010-11-07 20:07:44 +0900 | 1 line Reformatted code a bit. ........
| | * Recorded merge of revisions 86117 via svnmerge fromHirokazu Yamamoto2010-11-0215-58/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86117 | hirokazu.yamamoto | 2010-11-02 23:06:03 +0900 | 2 lines Defined Py_BUILD_CORE_MODULE also on VC7.1. # I don't have this compiler, so I couldn't test it. ........
| | * Recorded merge of revisions 86113 via svnmerge fromHirokazu Yamamoto2010-11-0216-64/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86113 | hirokazu.yamamoto | 2010-11-02 22:21:31 +0900 | 1 line Defined Py_BUILD_CORE_MODULE also on VC6. ........
| | * Merged revisions 84763,85135 via svnmerge fromHirokazu Yamamoto2010-10-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84763 | hirokazu.yamamoto | 2010-09-13 15:21:54 +0900 | 1 line Cosmetic fix to project files. ........ r85135 | hirokazu.yamamoto | 2010-10-01 19:40:49 +0900 | 1 line Cosmetic fix for PCBuild/readme.txt. ........
| | * Updated VS8.0 project files with PCBuild/vs9to8.py.Hirokazu Yamamoto2010-09-219-93/+153
| | |
| | * Merged revisions 84644 via svnmerge fromHirokazu Yamamoto2010-09-101-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84644 | hirokazu.yamamoto | 2010-09-09 15:14:23 +0900 | 1 line Updated VS7.1 project file. (I cannot test this file because I don't have VS7.1) ........
| | * Merged revisions 84506 via svnmerge fromAntoine Pitrou2010-09-041-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84506 | antoine.pitrou | 2010-09-04 22:53:29 +0200 (sam., 04 sept. 2010) | 5 lines Issue #8734: Avoid crash in msvcrt.get_osfhandle() when an invalid file descriptor is provided. Patch by Pascal Chambon. ........
| | * Issue #3210: Revert C module changes and apply patch from Hirokazu Yamamoto ↵Tim Golden2010-08-081-17/+2
| | | | | | | | | | | | instead
| | * Issue #3210: Ensure stdio handles are closed if CreateProcess failsTim Golden2010-08-061-2/+17
| | |