summaryrefslogtreecommitdiff
path: root/PC
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | 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. ........
| | * | Merged revisions ↵Benjamin Peterson2009-12-311-14/+104
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 76847,76851,76869,76882,76891-76892,76924,77007,77070,77092,77096,77120,77126,77155 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r76847 | benjamin.peterson | 2009-12-14 21:25:27 -0600 (Mon, 14 Dec 2009) | 1 line adverb ........ r76851 | benjamin.peterson | 2009-12-15 21:28:52 -0600 (Tue, 15 Dec 2009) | 1 line remove lib2to3 resource ........ r76869 | vinay.sajip | 2009-12-17 08:52:00 -0600 (Thu, 17 Dec 2009) | 1 line Issue #7529: logging: Minor correction to documentation. ........ r76882 | georg.brandl | 2009-12-19 11:30:28 -0600 (Sat, 19 Dec 2009) | 1 line #7527: use standard versionadded tags. ........ r76891 | georg.brandl | 2009-12-19 12:16:31 -0600 (Sat, 19 Dec 2009) | 1 line #7479: add note about function availability on Unices. ........ r76892 | georg.brandl | 2009-12-19 12:20:18 -0600 (Sat, 19 Dec 2009) | 1 line #7480: remove tautology. ........ r76924 | georg.brandl | 2009-12-20 08:28:05 -0600 (Sun, 20 Dec 2009) | 1 line Small indentation fix. ........ r77007 | gregory.p.smith | 2009-12-23 03:31:11 -0600 (Wed, 23 Dec 2009) | 3 lines Fix possible integer overflow in lchown and fchown functions. For issue1747858. ........ r77070 | amaury.forgeotdarc | 2009-12-27 14:06:44 -0600 (Sun, 27 Dec 2009) | 2 lines Fix a typo in comment ........ r77092 | georg.brandl | 2009-12-28 02:48:24 -0600 (Mon, 28 Dec 2009) | 1 line #7404: remove reference to non-existing example files. ........ r77096 | benjamin.peterson | 2009-12-28 14:51:17 -0600 (Mon, 28 Dec 2009) | 1 line document new fix_callable behavior ........ r77120 | georg.brandl | 2009-12-29 15:09:17 -0600 (Tue, 29 Dec 2009) | 1 line #7595: fix typo in argument default constant. ........ r77126 | amaury.forgeotdarc | 2009-12-29 17:06:17 -0600 (Tue, 29 Dec 2009) | 2 lines #7579: Add docstrings to the msvcrt module ........ r77155 | georg.brandl | 2009-12-30 13:03:00 -0600 (Wed, 30 Dec 2009) | 1 line We only support Windows NT derivatives now. ........
| | * | Merged revisions 76861 via svnmerge fromMark Dickinson2009-12-163-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76861 | mark.dickinson | 2009-12-16 20:13:40 +0000 (Wed, 16 Dec 2009) | 3 lines Issue #3366: Add expm1 function to math module. Thanks Eric Smith for testing on Windows. ........
| | * | Issue #7080: locale.strxfrm() raises a MemoryError on 64-bit non-WindowsAntoine Pitrou2009-10-191-0/+5
| | | | | | | | | | | | | | | | platforms, and assorted locale fixes by Derk Drukker.
| | * | Merged revisions 73998 via svnmerge fromAmaury Forgeot d'Arc2009-07-135-873/+873
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73998 | amaury.forgeotdarc | 2009-07-13 21:14:17 +0200 (lun., 13 juil. 2009) | 3 lines Set svn:eol-style=CRLF on all Visual Studio solution files. This should allow direct compilation from a downloaded source tar ball. ........
| | * | Updated MSVC project files to follow PyCObject removal (r73729)Hirokazu Yamamoto2009-07-013-15/+0
| | | |
| | * | Sorted file names.Hirokazu Yamamoto2009-06-281-24/+24
| | | |
| | * | Merged revisions 73603 via svnmerge fromHirokazu Yamamoto2009-06-281-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73603 | hirokazu.yamamoto | 2009-06-28 19:23:00 +0900 | 1 line Issue #4856: Remove checks for win NT. ........
| | * | Bump Windows versions to 3.2.Martin v. Löwis2009-06-277-22/+22
| | | |
* | | | #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-164-6/+6
| |_|/ |/| |
* | | #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
|/ /
* | 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