summaryrefslogtreecommitdiffstats
path: root/PC
Commit message (Collapse)AuthorAgeFilesLines
* Updated PC/VS8.0. (mainly to follow r86137: use temporary dir in ↵Hirokazu Yamamoto2010-11-044-95/+120
| | | | make_buildinfo.c)
* Can build older OpenSSL in http://svn.python.org/projects/externals/Hirokazu Yamamoto2010-11-042-2/+2
| | | | without Perl again.
* Defined Py_BUILD_CORE_MODULE also on VC7.1.Hirokazu Yamamoto2010-11-0215-58/+58
| | | | # I don't have this compiler, so I couldn't test it.
* Py_BUILD_CORE_MODULE was not needed in python.dsp and pythonw.dsp.Hirokazu Yamamoto2010-11-022-8/+8
|
* Defined Py_BUILD_CORE_MODULE also on VC6.Hirokazu Yamamoto2010-11-0218-72/+72
|
* Updated readme.txt about OpenSSL.Hirokazu Yamamoto2010-10-281-6/+4
|
* Follow up to #9778: fix regressions on 64-bit Windows buildsAntoine Pitrou2010-10-231-1/+1
|
* #9418: first step of moving private string methods to _string module.Georg Brandl2010-10-141-0/+2
|
* Follows Python/fileutils.c addition.Hirokazu Yamamoto2010-10-083-3/+18
|
* Updated PC/VC6 openssl build script. (for openssl-1.0.0a)Hirokazu Yamamoto2010-09-281-16/+42
|
* Now perl path with spaces can be used.Hirokazu Yamamoto2010-09-281-6/+6
|
* Updated VS8.0 bz2.vcproj with PCBuild/vs9to8.py.Hirokazu Yamamoto2010-09-281-24/+60
|
* Implement #8521. Added named argument handling to winreg's CreateKeyEx,Brian Curtin2010-09-271-33/+43
| | | | | | | | DeleteKeyEx, and OpenKeyEx. Note that CKE and DKE are new functions for 3.2 so I didn't give them a versionchanged because of the existing versionadded. OpenKeyEx already existed so it gets a versionchanged tag.
* issue 9910Kristján Valur Jónsson2010-09-271-0/+24
| | | | Add a Py_SetPath api to override magic path computations when starting up python.
* Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows)Hirokazu Yamamoto2010-09-245-20/+232
|
* Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows)Hirokazu Yamamoto2010-09-211-2/+13
|
* Revert r84902 before committing better solution.Hirokazu Yamamoto2010-09-212-8/+8
|
* Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows)Hirokazu Yamamoto2010-09-192-8/+8
|
* Applied r84870 to older compilers.Hirokazu Yamamoto2010-09-182-2/+2
|
* Cosmetic fix to project files.Hirokazu Yamamoto2010-09-131-1/+1
|
* Updated PC/VS8.0 with PCBuild/vs9to8.py.Hirokazu Yamamoto2010-09-139-91/+115
|
* Updated VS7.1 project file. (I cannot test this file because I don't have VS7.1)Hirokazu Yamamoto2010-09-091-11/+17
|
* Updated VC6 files.Hirokazu Yamamoto2010-09-093-14/+14
| | | | | | * pythoncore.dsp: updated project file * readme.txt: removed dead link * tcl852.patch: fixed patch. it was doubled.
* Issue #8734: Avoid crash in msvcrt.get_osfhandle() when an invalid fileAntoine Pitrou2010-09-041-0/+3
| | | | descriptor is provided. Patch by Pascal Chambon.
* Welcome to the UTF-8 world.Florent Xicluna2010-09-031-1/+1
|
* Issue 8781: Define SIZEOF_WCHAR_T on WindowsDaniel Stutzbach2010-08-251-0/+3
|
* Fix #7579. Add docstrings to msvcrt and adjust some wording for bytes.Brian Curtin2010-08-241-9/+10
|
* Remove long-redundant plat-win from sys.path on WindowsTim Golden2010-08-201-1/+1
|
* Cleanup and correct a few ints to be Py_ssize_t.Brian Curtin2010-08-171-3/+4
|
* Properly downcast from size_t/Py_ssize_t in a few places.Brian Curtin2010-08-171-4/+6
|
* Fix compilation warning on WindowsAmaury Forgeot d'Arc2010-08-161-2/+2
|
* 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
|
* Fix the VS8.0 buildRaymond Hettinger2010-08-061-0/+8
|
* Fix VS8.0 build by adding _time.h and _time.c to the project file.Raymond Hettinger2010-08-011-0/+8
|
* Fix build on VS8.Raymond Hettinger2010-07-311-1/+1
|
* Update copyright years and add releases to release list. Also update Sphinx ↵Georg Brandl2010-07-311-1/+1
| | | | version number.
* Issue #7989: Added pure python implementation of the datetime module.Alexander Belopolsky2010-07-231-2/+2
|
* Issue #9089: Remove intobject.h from MSVC project files.Mark Dickinson2010-06-271-4/+0
|
* Fix a compile warning missed during porting (wchar_t/char) and move aBrian Curtin2010-06-081-4/+4
| | | | variable declaration outside of a loop. #2810 was when this first went in.
* Fix #2810 - handle the case where some registry calls returnBrian Curtin2010-05-261-28/+91
| | | | | | ERROR_MORE_DATA, requiring another call to get the remaining data. Patch by Daniel Stutzbach
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-0925-6187/+6187
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........
* Make (most of) Python's tests pass under Thread Sanitizer.Jeffrey Yasskin2010-05-033-0/+12
| | | | | | | | | | | | | | | | | | http://code.google.com/p/data-race-test/wiki/ThreadSanitizer is a dynamic data race detector that runs on top of valgrind. With this patch, the binaries at http://code.google.com/p/data-race-test/wiki/ThreadSanitizer#Binaries pass many but not all of the Python tests. All of regrtest still passes outside of tsan. I've implemented part of the C1x atomic types so that we can explicitly mark variables that are used across threads, and get defined behavior as compilers advance. I've added tsan's client header and implementation to the codebase in dynamic_annotations.{h,c} (docs at http://code.google.com/p/data-race-test/wiki/DynamicAnnotations). Unfortunately, I haven't been able to get helgrind and drd to give sensible error messages, even when I use their client annotations, so I'm not supporting them.
* Merged revisions 80439 via svnmerge fromBrian Curtin2010-04-241-10/+93
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80439 | brian.curtin | 2010-04-24 10:40:11 -0500 (Sat, 24 Apr 2010) | 6 lines Fix #7838. Add docstrings and privatize _subprocess implementation details. Since CREATE_NEW_* are used for the creation flags of a subprocess, they were added to __all__. The rest of the previously exposed attributes are now qualified by _subprocess.ATTR rather than importing *. ........
* Port #7347 to py3k.Brian Curtin2010-04-211-12/+107
| | | | Add CreateKeyEx and DeleteKeyEx, along with test improvements.
* Port #1220212 (os.kill for Win32) to py3k.Brian Curtin2010-04-121-0/+2
|
* Merged revisions 78393 via svnmerge fromAmaury Forgeot d'Arc2010-02-242-2/+0
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r78393 | amaury.forgeotdarc | 2010-02-24 00:19:39 +0100 (mer., 24 févr. 2010) | 2 lines #4852: Remove dead code in every thread implementation, unused for many years. ........
* Issue #5988: Delete deprecated functions PyOS_ascii_formatd, ↵Eric Smith2010-02-221-5/+0
| | | | PyOS_ascii_strtod, and PyOS_ascii_atof.
* Merged revisions 78213 via svnmerge fromMartin v. Löwis2010-02-181-1/+1
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r78213 | martin.v.loewis | 2010-02-18 10:22:20 +0100 (Do, 18 Feb 2010) | 3 lines Stop providing crtassem.h symbols when compiling with Visual Studio 2010, as msvcr100.dll is not a platform assembly anymore. ........
* Merged revisions 77461 via svnmerge fromAntoine Pitrou2010-01-131-0/+4
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r77461 | antoine.pitrou | 2010-01-13 08:55:48 +0100 (mer., 13 janv. 2010) | 5 lines Issue #7622: Improve the split(), rsplit(), splitlines() and replace() methods of bytes, bytearray and unicode objects by using a common implementation based on stringlib's fast search. Patch by Florent Xicluna. ........