summaryrefslogtreecommitdiffstats
path: root/PC/VS7.1
Commit message (Collapse)AuthorAgeFilesLines
* Remove dead Windows code which no longer will compile.Brett Cannon2012-05-041-27/+0
|
* Merge with 3.2: use ws2_32.lib rather than wsock32.lib on windows.Kristján Valur Jónsson2012-04-151-4/+4
|\
| * Make all socket related modules link with ws2_32.lib on windows, likeKristján Valur Jónsson2012-04-151-4/+4
| | | | | | | | _socket does. Some were using the older wsock32.lib.
* | hg merge 3.2Amaury Forgeot d'Arc2012-04-131-0/+3
|\ \ | |/
| * Issue14559: Fix build files old Microft compilers.Amaury Forgeot d'Arc2012-04-131-0/+3
| | | | | | | | With VS8.0 at least Python compiles and works correctly.
* | Issue #12911: Fix memory consumption when calculating the repr() of huge ↵Antoine Pitrou2011-10-061-0/+3
|\ \ | |/ | | | | | | | | | | 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-061-0/+3
| | | | | | | | | | | | | | 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.
* | Convert DOS files to CRLF. This doesn't touch the .hgeol settings, so that ↵Martin v. Löwis2011-03-0620-5255/+5255
|\ \ | |/ | | | | | | | | 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-0621-5530/+5530
| |\ | | | | | | | | | | | | | | | 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-0621-5518/+5518
| | | | | | | | | | | | | | | | | | 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-051-12/+12
| | |
| | * 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. ........
| | * 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) ........
| | * Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-63/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r81032 | antoine.pitrou | 2010-05-09 17:52:27 +0200 (dim., 09 mai 2010) | 9 lines Recorded merge of revisions 81029 via svnmerge from 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. ........ ................
| * | Add updated .hgeol file and fix newlines in the 3.2 branch.Georg Brandl2011-03-052-287/+287
| | |
* | | Make svn:eol-style's more consistentAntoine Pitrou2011-02-251-12/+12
| | |
* | | More automated version replacement.Georg Brandl2011-02-202-14/+14
|/ /
* | 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.
* | Follows Python/fileutils.c addition.Hirokazu Yamamoto2010-10-081-3/+6
| |
* | Applied r84870 to older compilers.Hirokazu Yamamoto2010-09-181-1/+1
| |
* | Updated VS7.1 project file. (I cannot test this file because I don't have VS7.1)Hirokazu Yamamoto2010-09-091-11/+17
| |
* | Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-63/+63
| | | | | | | | | | | | | | | | | | | | 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-031-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 76861 via svnmerge fromMark Dickinson2009-12-161-0/+3
| | | | | | | | | | | | | | | | | | | | | | 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. ........
* | Merged revisions 73998 via svnmerge fromAmaury Forgeot d'Arc2009-07-131-275/+275
| | | | | | | | | | | | | | | | | | | | | | 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-011-3/+0
| |
* | Bump Windows versions to 3.2.Martin v. Löwis2009-06-271-12/+12
|/
* #3791: remove last traces of bsddb.Georg Brandl2009-06-044-112/+1
|
* Added Objects/capsule.c to project files.Hirokazu Yamamoto2009-05-061-0/+3
|
* Merged revisions 72040 via svnmerge fromEric Smith2009-04-271-0/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72040 | eric.smith | 2009-04-27 15:04:37 -0400 (Mon, 27 Apr 2009) | 1 line Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to py3k. Should fix Windows buildbot errors. ........
* Added Python/dtoa.c to project files.Hirokazu Yamamoto2009-04-181-0/+3
|
* Issue 5682: Move _io module into its own subdirectory.Alexandre Vassalotti2009-04-041-9/+26
| | | | Reviewed by: Antoine Pitrou
* Merged revisions 68203 via svnmerge fromMartin v. Löwis2009-01-031-3/+0
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68203 | martin.v.loewis | 2009-01-03 18:19:26 +0100 (Sa, 03 Jan 2009) | 2 lines Issue #4817: Remove unused function PyOS_GetLastModificationTime. ........
* More 3.0 -> 3.1 transistionsChristian Heimes2008-12-031-12/+12
|
* Merged revisions 67295,67301-67302,67318,67330,67342-67343 via svnmerge fromAmaury Forgeot d'Arc2008-11-221-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67295 | benjamin.peterson | 2008-11-20 05:05:12 +0100 (jeu., 20 nov. 2008) | 1 line move useful sys.settrace information to the function's documentation from the debugger ........ r67301 | benjamin.peterson | 2008-11-20 22:25:31 +0100 (jeu., 20 nov. 2008) | 1 line fix indentation and a sphinx warning ........ r67302 | benjamin.peterson | 2008-11-20 22:44:23 +0100 (jeu., 20 nov. 2008) | 1 line oops! didn't mean to disable that test ........ r67318 | amaury.forgeotdarc | 2008-11-21 23:05:48 +0100 (ven., 21 nov. 2008) | 4 lines #4363: Let uuid.uuid1() and uuid.uuid4() run even if the ctypes module is not present. Will backport to 2.6 ........ r67330 | georg.brandl | 2008-11-22 09:34:14 +0100 (sam., 22 nov. 2008) | 2 lines #4364: fix attribute name on ctypes object. ........ r67342 | amaury.forgeotdarc | 2008-11-22 20:39:38 +0100 (sam., 22 nov. 2008) | 3 lines yuvconvert.c is a part of the "sv" module, an old IRIX thing and certainly not useful for any Windows build. ........ r67343 | amaury.forgeotdarc | 2008-11-22 21:01:18 +0100 (sam., 22 nov. 2008) | 5 lines #3996: On Windows, PyOS_CheckStack is supposed to protect the interpreter from stack overflow. But doing this, it always crashes when the stack is nearly full. Reviewed by Martin von Loewis. Will backport to 2.6. ........
* Align the VS2003 and VS2005 build files with the VS2008 onesAmaury Forgeot d'Arc2008-09-062-271/+0
| | | | (VC6 was done before)
* Merged revisions 66167 via svnmerge fromAmaury Forgeot d'Arc2008-09-022-13/+13
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66167 | amaury.forgeotdarc | 2008-09-02 23:50:47 +0200 (mar., 02 sept. 2008) | 5 lines Attempt to correct the build files for the Microsoft VS7.1 compiler. I don't have a working VS7.1, but VS2005 can automatically convert the project and build a working python interpreter. ........
* On Windows, repair compilation of builtin modules _stringio and _pickle.Amaury Forgeot d'Arc2008-06-121-0/+6
| | | | | (Alexandre, the MSVC build files are in PCBuild. the PC/Vxxx directories try to support older compilers)
* Removed _stringio from Windows build.Alexandre Vassalotti2008-06-121-3/+0
| | | | | | | | For some yet unknown reason, MSVC's linker fails to resolve _stringio's module initializer (PyInit__stringio). This probably means the module is not build correctly. Therefore, I am removing Windows support temporarily until I find how to add new modules properly for MSVC.
* revert the addition of _pickle because it was causing havok with 64-bitBenjamin Peterson2008-06-121-3/+0
|
* Attempt to fix the Windows build for _stringio and _pickle.Alexandre Vassalotti2008-06-121-0/+9
| | | | I don't have any win32 machine in my reach. So, I can't test this.
* Fix the Windows build by removing references to the cStringIO moduleThomas Heller2008-06-101-3/+0
| | | | which no longer exists.
* Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.Georg Brandl2008-06-041-1/+1
|
* Revert r63934 -- it was mixing two patches.Georg Brandl2008-06-041-1/+1
|
* Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.Georg Brandl2008-06-041-1/+1
|
* Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875.Georg Brandl2008-05-251-1/+1
|
* #2879: rename _winreg to winreg.Georg Brandl2008-05-253-7/+7
|
* Tkinter, step 5: remove lib-tk subdirectory and update all places where it ↵Georg Brandl2008-05-172-10/+8
| | | | was mentioned.
* Merged revisions 62734,62736,62748,62769 via svnmerge fromChristian Heimes2008-05-081-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r62734 | brett.cannon | 2008-05-05 22:21:38 +0200 (Mon, 05 May 2008) | 5 lines Add the 'json' package. Code taken from simplejson 1.9 and contributed by Bob Ippolito. Closes issue #2750. ........ r62736 | georg.brandl | 2008-05-05 22:53:39 +0200 (Mon, 05 May 2008) | 2 lines Fix JSON module docs. ........ r62748 | benjamin.peterson | 2008-05-06 04:51:10 +0200 (Tue, 06 May 2008) | 2 lines PEP 8 nits in json package ........ r62769 | christian.heimes | 2008-05-06 18:18:41 +0200 (Tue, 06 May 2008) | 2 lines Intern static string Use float constructors instead of magic code for float constants ........
* Merged revisions 62380,62382-62383 via svnmerge fromChristian Heimes2008-04-191-0/+3
| | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r62380 | christian.heimes | 2008-04-19 01:13:07 +0200 (Sat, 19 Apr 2008) | 3 lines I finally got the time to update and merge Mark's and my trunk-math branch. The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of loose ends and edge cases related to operations with NaN, INF, very small values and complex math. The patch also adds acosh, asinh, atanh, log1p and copysign to all platforms. Finally it fixes differences between platforms like different results or exceptions for edge cases. Have fun :) ........ r62382 | christian.heimes | 2008-04-19 01:40:40 +0200 (Sat, 19 Apr 2008) | 2 lines Added new files to Windows project files More Windows related fixes are coming soon ........ r62383 | christian.heimes | 2008-04-19 01:49:11 +0200 (Sat, 19 Apr 2008) | 1 line Stupid me. Py_RETURN_NAN should actually return something ... ........