summaryrefslogtreecommitdiffstats
path: root/PC
Commit message (Collapse)AuthorAgeFilesLines
* update to (c) years to include 2007Anthony Baxter2007-01-061-1/+1
|
* Conditionalize definition of _CRT_SECURE_NO_DEPRECATEMartin v. Löwis2006-11-211-0/+4
| | | | | and _CRT_NONSTDC_NO_DEPRECATE. Will backport.
* Add missing svn:eol-style to text files.Tim Peters2006-10-182-339/+339
|
* Remove obsolete file. Will backport.Martin v. Löwis2006-10-171-0/+0
|
* Patch #1457736: Update VC6 to use current PCbuild settings.Martin v. Löwis2006-10-1711-390/+278
| | | | Will backport to 2.5.
* Set the eol-style for project files to "CRLF".Martin v. Löwis2006-10-153-424/+424
|
* Patch #1577551: Add ctypes and ET build support for VC6.Martin v. Löwis2006-10-154-16/+476
| | | | Will backport to 2.5.
* Patch #1576954: Update VC6 build directory; remove redundantMartin v. Löwis2006-10-151-18/+78
| | | | files in VC7. Will backport to 2.5.
* Patch #1572724: fix typo ('=' instead of '==') in _msi.c.Georg Brandl2006-10-091-1/+1
|
* Add MSVC8 project files to create wininst-8.exe.Martin v. Löwis2006-10-042-0/+339
|
* Update the PCBuild8 solution.Kristján Valur Jónsson2006-09-051-2/+2
| | | | | | | | Facilitate cross-compilation by having binaries in separate Win32 and x64 directories. Rationalized configs by making proper use of platforms/configurations. Remove pythoncore_pgo project. Add new PGIRelease and PGORelease configurations to perform Profile Guided Optimisation. Removed I64 support, but this can be easily added by copying the x64 platform settings.
* Try to get Windows bots working againNeal Norwitz2006-08-181-2/+2
|
* Enable the building of the _types module on Windows.Barry Warsaw2006-07-271-0/+3
| | | | Note that this has only been tested for VS 2003 since that's all I have.
* Patch #1527744: right order of includes in order to have HAVE_CONIO_H ↵Georg Brandl2006-07-241-3/+3
| | | | defined properly.
* Patch #1232023: Don't include empty path component from registry,Martin v. Löwis2006-07-241-0/+4
| | | | | so that the current directory does not get added to sys.path. Also fixes #1526785.
* Patch #1448199: Release GIL around ConnectRegistry.Martin v. Löwis2006-07-241-0/+2
|
* Build updates for OS/2 EMX portAndrew MacIntyre2006-07-235-251/+404
|
* Patch #1495999: Part two of Windows CE changes.Martin v. Löwis2006-06-105-2/+84
| | | | | | - update header checks, using autoconf - provide dummies for getenv, environ, and GetVersion - adjust MSC_VER check in socketmodule.c
* Turn off warning about deprecated CRT functions on for VisualStudio .NET 2005.Kristján Valur Jónsson2006-06-091-0/+6
| | | | Make the definition #ARRAYSIZE conditional. VisualStudio .NET 2005 already has it defined using a better gimmick.
* Bug #1500293: fix memory leaks in _subprocess module.Georg Brandl2006-06-041-3/+10
|
* Updated version (win32-icons2.zip) from #1490384.Martin v. Löwis2006-06-033-0/+0
|
* Convert more modules to METH_VARARGS.Georg Brandl2006-05-292-3/+3
|
* Apply modified version of Collin Winter's patch #1478788Nick Coghlan2006-05-292-3/+3
| | | | | | Renames functional extension module to _functools and adds a Python functools module so that utility functions like update_wrapper can be added easily.
* Rest of patch #1490384: Commit icon source, removeMartin v. Löwis2006-05-282-0/+609
| | | | | claim that Erik von Blokland is the author of the installer picture.
* Added a new macro, Py_IS_FINITE(X). On windows there is an intrinsic for ↵Kristján Valur Jónsson2006-05-251-0/+1
| | | | this and it is more efficient than to use !Py_IS_INFINITE(X) && !Py_IS_NAN(X). No change on other platforms
* Get the Windows build working again (recover fromTim Peters2006-05-231-2/+2
| | | | `struct` module changes).
* Define SIZEOF_{DOUBLE,FLOAT} on Windows. ElseTim Peters2006-05-221-1/+3
| | | | | Michael Hudson's nice gimmicks for IEEE special values (infinities, NaNs) don't work.
* Patch #1492356: Port to Windows CE (patch set 1).Martin v. Löwis2006-05-221-4/+42
|
* Patch 1490384: New Icons for the PC build.Martin v. Löwis2006-05-223-0/+0
|
* Change WindowsError to carry the Win32 error code in winerror,Martin v. Löwis2006-05-113-0/+103
| | | | | and the DOS error code in errno. Revert changes where WindowsError catch blocks unnecessarily special-case OSError.
* Port to Python 2.5. Drop .DEF file. Change output file names to .pyd.Martin v. Löwis2006-04-223-12/+7
|
* Allocate the 0x1D1A0000 base adress for the _ctypes extension module.Thomas Heller2006-04-131-0/+1
| | | | | | | Export the COM entry point functions. Note that there are several conflicting base addresses defined for other extensions, also not all are listed in dllbase_nt.txt.
* Years in the making.Tim Peters2006-03-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | objimpl.h, pymem.h: Stop mapping PyMem_{Del, DEL} and PyMem_{Free, FREE} to PyObject_{Free, FREE} in a release build. They're aliases for the system free() now. _subprocess.c/sp_handle_dealloc(): Since the memory was originally obtained via PyObject_NEW, it must be released via PyObject_FREE (or _DEL). pythonrun.c, tokenizer.c, parsermodule.c: I lost count of the number of PyObject vs PyMem mismatches in these -- it's like the specific function called at each site was picked at random, sometimes even with memory obtained via PyMem getting released via PyObject. Changed most to use PyObject uniformly, since the blobs allocated are predictably small in most cases, and obmalloc is generally faster than system mallocs then. If extension modules in real life prove as sloppy as Python's front end, we'll have to revert the objimpl.h + pymem.h part of this patch. Note that no problems will show up in a debug build (all calls still go thru obmalloc then). Problems will show up only in a release build, most likely segfaults.
* Update to Tk 8.4.12 and Tix 8.4.0Martin v. Löwis2006-03-211-108/+0
|
* Remove some more references to regex that I missed.Neal Norwitz2006-03-165-25/+0
|
* Remove regsub, reconvert, regex, regex_syntax and everything under lib-old.Neal Norwitz2006-03-165-67/+5
|
* lower-case time_t.Martin v. Löwis2006-03-061-1/+1
|
* Patch #1437769: notice that time_t is a 64-bit type in VS2005Martin v. Löwis2006-03-061-1/+6
|
* Update copyright notice.Martin v. Löwis2006-03-051-1/+1
|
* Import bdist_msiMartin v. Löwis2006-03-051-0/+1008
|
* Remove svn:mime-type (inexplicably set to a binary type),Tim Peters2006-03-013-294/+294
| | | | and set svn:eol-style to native, on some text files.
* Create _ast module.Martin v. Löwis2006-02-271-0/+2
| | | | Cleanup Python-ast.c generation.
* PyEnumKey(): Stop including the trailing NUL byteTim Peters2006-02-191-5/+4
| | | | | in the returned string (logic error introduced by recent patch).
* PyEnumKey(): Remove unused local.Tim Peters2006-02-191-1/+0
|
* Add sizeof() instead of hardcoding variable lengthGeorg Brandl2006-02-181-1/+1
|
* Patch #977553: speed up RegEnumKey callGeorg Brandl2006-02-181-19/+12
|
* getpythonregpath(): Squash compiler warning aboutTim Peters2006-02-161-2/+2
| | | | | | mixing signed and unsigned types in comparison. Relatedly, `dataSize` is declared as DWORD, not as int, so change relevant cast from (int) to (DWORD).
* Merge ssize_t branch.Martin v. Löwis2006-02-153-7/+20
|
* Add _lsprof.Martin v. Löwis2006-02-141-0/+2
|
* Update general copyright years to 2006.Georg Brandl2006-02-111-1/+1
|