summaryrefslogtreecommitdiffstats
path: root/PC/VS8.0
Commit message (Collapse)AuthorAgeFilesLines
* Run svneol.py on all sources.Martin v. Löwis2008-06-1328-16344/+16344
|
* Add a missing file for VS2005Amaury Forgeot d'Arc2008-06-131-0/+568
|
* Update VS8.0 build files, using the script vs9to8.py.Amaury Forgeot d'Arc2008-06-1210-311/+492
| | | | | Also remove references to odbc libraries, which are not shipped with vs2003 express. (and certainly not useful)
* Rename bytesobject.c back to stringobject.c to keep with the PyString theme.Gregory P. Smith2008-06-101-1/+1
| | | | Part of reverting most of r63675 per the mailing list discussion.
* Used vs9to8.py to port all VS9.0 changes to 8.0Christian Heimes2008-05-2620-102/+3140
| | | | Updated VS7.1 and VC6 project files
* Backport fast alternate io.BytesIO implementation.Alexandre Vassalotti2008-05-091-0/+4
| | | | | Merged r62778, r62779, r62802, r62806, r62807, r62808, r62809, r62844, r62846, r62952, r62956.
* Add the 'json' package. Code taken from simplejson 1.9 and contributed by BobBrett Cannon2008-05-051-0/+4
| | | | | | Ippolito. Closes issue #2750.
* Added new files to Windows project filesChristian Heimes2008-04-181-0/+4
| | | | More Windows related fixes are coming soon
* Update project files for all Windows supported compilersAmaury Forgeot d'Arc2008-04-141-0/+4
|
* Issue 2408: remove the _types moduleAmaury Forgeot d'Arc2008-04-081-4/+0
| | | | | | | | | It was only used as a helper in types.py to access types (GetSetDescriptorType and MemberDescriptorType), when they can easily be obtained with python code. These expressions even work with Jython. I don't know what the future of the types module is; (cf. discussion in http://bugs.python.org/issue1605 ) at least this change makes it simpler.
* Repair compilation for Visual Studio 2005.Amaury Forgeot d'Arc2008-03-284-20/+26
| | | | | | | I applied the same changes manually to VS7.1 and VC6 files; completely untested. (Christian, don't try too hard merging this change into py3k. It will be easier to do the same work again on the branch)
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+0
|
* Compilation was broken on Windows since the introduction of Advanced String ↵Amaury Forgeot d'Arc2008-02-171-0/+8
| | | | | | | Formatting. Only PCBuild (vs9) was really tested. Changes for older compilers were done manually.
* vs9to8 syncChristian Heimes2008-01-091-0/+1
|
* Issue #1726: Remove Python/atof.c from PCBuild/pythoncore.vcprojChristian Heimes2008-01-031-8/+0
|
* Removed PCbuild8/ directory and added a new build directory for VS 2005Christian Heimes2008-01-0243-0/+14004
based on the VS 2008 build directory to PC/VS8.0. The script PCbuild/vs8to9.py was added to sync changes from PCbuild to PC/VS8.0. Kristjan, the initial creator of the PCbuild8 directory is fine with the replacement. I've moved the new version of the VS 2005 build directory next to the other legacy build directories. The new sync script is based on the work of wreck and syncs changes in the project, property and solution files.