- 6634bf2 Tkinter rename reversal: remove tkinter package, adapt imports and docs. by Georg Brandl · 16 years ago
- 6c90c9f Add new tkinter dir to various locations where lib-tk shows up. by Georg Brandl · 16 years ago
- f9b54c2 Sync code with documentation, and remove Win95 support in winsound module. by Amaury Forgeot d'Arc · 16 years ago
- 1aed624 Backport fast alternate io.BytesIO implementation. by Alexandre Vassalotti · 16 years ago
- 4b964f9 Add the 'json' package. Code taken from simplejson 1.9 and contributed by Bob by Brett Cannon · 17 years ago
- 7c5c8e6 #2581: Vista UAC/elevation support for bdist_wininst by Mark Hammond · 17 years ago
- 81ad6a1 Added new files to Windows project files by Christian Heimes · 17 years ago
- 6f34109 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. by Christian Heimes · 17 years ago
- 14d6b0f Update project files for all Windows supported compilers by Amaury Forgeot d'Arc · 17 years ago
- 76ca13c Fix an accidental bug of an non-existent init function. by Brett Cannon · 17 years ago
- e974689 Re-implement the 'warnings' module in C. This allows for usage of the by Brett Cannon · 17 years ago
- 7adc776 Issue 2408: remove the _types module by Amaury Forgeot d'Arc · 17 years ago
- eba0004 Typographical fix: 32bit -> 32-bit, 64bit -> 64-bit by Andrew M. Kuchling · 17 years ago
- 495cf99 Issue #2513: enable 64bit cross compilation on windows. by Mark Hammond · 17 years ago
- 8a3c871 From issue 1753245 - better _winreg support for x64. by Mark Hammond · 17 years ago
- 1725f24 One #ifdef too much, and I broke all windows buildbots: by Amaury Forgeot d'Arc · 17 years ago
- 94eba71 Repair compilation for Visual Studio 2005. by Amaury Forgeot d'Arc · 17 years ago
- 9a960c6 Revert commit accident by Christian Heimes · 17 years ago
- a82e8db Hopefully added _fileio module to the Windows build system by Christian Heimes · 17 years ago
- 4677fbf7 Try to fix a bunch of compiler warnings on Win64. by Neal Norwitz · 17 years ago
- 189b6d8 More copyright year and version number bumps by Barry Warsaw · 17 years ago
- c5f05e4 Patch #2167 from calvin: Remove unused imports by Christian Heimes · 17 years ago
- a73fbe7 Added future_builtins, which contains PEP 3127 compatible versions of hex() and oct(). by Eric Smith · 17 years ago
- e7fa408 Compilation was broken on Windows since the introduction of Advanced String Formatting. by Amaury Forgeot d'Arc · 17 years ago
- e0d30ef Patch #1736: Fix file name handling of _msi.FCICreate. by Martin v. Löwis · 17 years ago
- 95d6447 Issue #1706: Require Windows 2000+ by Christian Heimes · 17 years ago
- 52895fc Rename module definition file to reflect v2.6. by Andrew MacIntyre · 17 years ago
- e6d9010 Update OS/2 EMX build bits for 2.6. by Andrew MacIntyre · 17 years ago
- 195b883 vs9to8 sync by Christian Heimes · 17 years ago
- b39a756 Added __enter__ and __exit__ functions to HKEY object by Christian Heimes · 17 years ago
- aee643b Reverted last transaction. It's the wrong branch. by Christian Heimes · 17 years ago
- 306179b And here is the rest of Hirokazu Yamamoto's patch for VS6.0 support. Thanks Hiro! by Christian Heimes · 17 years ago
- 1beea3b Issue #1726: Remove Python/atof.c from PCBuild/pythoncore.vcproj by Christian Heimes · 17 years ago
- d9fbab2 Removed PCbuild8/ directory and added a new build directory for VS 2005 by Christian Heimes · 17 years ago
- e1c6af0 The root of the project is two levels up from PC/VS7.1 by Christian Heimes · 17 years ago
- 44ac355 Fixed path to _ssl.c in Windows make file, take three ... by Christian Heimes · 17 years ago
- 340f081 Fixed path to _ssl.c in Windows make file, take two by Christian Heimes · 17 years ago
- 763c06f Fixed path to _ssl.c in Windows make file by Christian Heimes · 17 years ago
- 34ab3db Fixed path by Christian Heimes · 17 years ago
- 8255222 Fixed include paths of PC/VS7.1 by Christian Heimes · 17 years ago
- 656dc2a Fix paths for build bot by Christian Heimes · 17 years ago
- 915d5d9 Moved PCbuild directory to PC/VS7.1 by Christian Heimes · 17 years ago
- 0a8143f Applied patch #1635: Float patch for inf and nan on Windows (and other platforms). by Christian Heimes · 17 years ago
- 61927fc Stupid save all didn't safe it all ... by Christian Heimes · 17 years ago
- 7c7f6af Added wide char api variants of getch and putch to msvcrt module. The wide char methods are required to fix #1578 in py3k. I figured out that they might be useful in 2.6, too. by Christian Heimes · 17 years ago
- 3d2f564 Several Windows related cleanups: by Christian Heimes · 17 years ago
- 9f6d4ce Although pyconfig.h claims that WIN32 is obsolete it is still required for the locale module. locale.getdefaultlocale() fails silently w/o the WIN32 macro. by Christian Heimes · 17 years ago
- 3971f6b Removed or replaced some more deprecated preprocessor macros. by Christian Heimes · 17 years ago
- d476a40 Bug #1216: Restore support for Visual Studio 2002. Will backport to 2.5. by Martin v. Löwis · 17 years ago
- a6a21fa Correct use of Py_BUILD_CORE - now make sure it is defined before it is by Mark Hammond · 17 years ago
- df7f38f Correctly detect AMD64 architecture on VC2003 by Mark Hammond · 17 years ago
- d0aabc0 In consultation with Kristjan Jonsson, only define WINVER and _WINNT_WIN32 by Mark Hammond · 17 years ago
- 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
- da073e1 Patch #1734014: Use _I64_MAX instead of LLONG_MAX. Will backport to 2.5. by Martin v. Löwis · 17 years ago
- 71d11d3 Fix Windows build. by Martin v. Löwis · 17 years ago
- 6371cd8 Patch #1733960: Allow T_LONGLONG to accept ints. Will backport to 2.5. by Martin v. Löwis · 17 years ago
- 629ec26 Include <windows.h> after python.h, so that WINNT is properly set before windows.h is included. Fixes warnings in PC builds. by Kristján Valur Jónsson · 17 years ago
- 5f2ba9f Remove definition of PY_UNICODE_TYPE from pyconfig.h, allowing the by Mark Hammond · 17 years ago
- 7e93587 Try to remove rgbimg from Windows builds. by Brett Cannon · 17 years ago
- c0e9840 Revert compiler comment to AMD64 for x64/AMD64 builds. by Kristján Valur Jónsson · 18 years ago
- f030394 Fix problems in x64 build that were discovered by the testsuite: by Kristján Valur Jónsson · 18 years ago
- 7a0da19 Complete revamp of PCBuild8 directory. Use subdirectories for each project under the main pcbuild solution. Now make extensive use of property sheets to simplify project configuration. x64 build fully supported, and the process for building PGO version (Profiler Guided Optimization) simplified. All projects are now present, except _ssl, which needs to be reimplemented. Also, some of the projects that require external libraries need extra work to fully compile on x64. by Kristján Valur Jónsson · 18 years ago
- 17b8e97 Merge change 54909 from release25-maint: Fix several minor issues discovered using code analysis in VisualStudio 2005 Team Edition by Kristján Valur Jónsson · 18 years ago
- e6bdb9b Add the necessary dependency for the Windows VC6 build to ensure 'pythoncore' by Trent Mick · 18 years ago
- 019fcbc Fix potential crash in path manipulation on windows by Kristján Valur Jónsson · 18 years ago
- eb97988 Prepare collections module for pure python code entries. by Raymond Hettinger · 18 years ago
- 83955ef update to (c) years to include 2007 by Anthony Baxter · 18 years ago
- 2607e6c Conditionalize definition of _CRT_SECURE_NO_DEPRECATE by Martin v. Löwis · 18 years ago
- b03c35b Add missing svn:eol-style to text files. by Tim Peters · 18 years ago
- 79282a2 Remove obsolete file. Will backport. by Martin v. Löwis · 18 years ago
- 7addebf Patch #1457736: Update VC6 to use current PCbuild settings. by Martin v. Löwis · 18 years ago
- f56591c Set the eol-style for project files to "CRLF". by Martin v. Löwis · 18 years ago
- 6eb36b0 Patch #1577551: Add ctypes and ET build support for VC6. Will backport to 2.5. by Martin v. Löwis · 18 years ago
- c9e82f6 Patch #1576954: Update VC6 build directory; remove redundant by Martin v. Löwis · 18 years ago
- 412a9ea Patch #1572724: fix typo ('=' instead of '==') in _msi.c. by Georg Brandl · 18 years ago
- 8b27426 Add MSVC8 project files to create wininst-8.exe. by Martin v. Löwis · 18 years ago
- b15a0cc Update the PCBuild8 solution. by Kristján Valur Jónsson · 18 years ago
- 094353c Try to get Windows bots working again by Neal Norwitz · 18 years ago
- d17301f Enable the building of the _types module on Windows. by Barry Warsaw · 18 years ago
- 844f7dd Patch #1527744: right order of includes in order to have HAVE_CONIO_H defined properly. by Georg Brandl · 18 years ago
- d22968a Patch #1232023: Don't include empty path component from registry, by Martin v. Löwis · 18 years ago
- bda0dde Patch #1448199: Release GIL around ConnectRegistry. by Martin v. Löwis · 18 years ago
- bb45037 Build updates for OS/2 EMX port by Andrew MacIntyre · 18 years ago
- 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 18 years ago
- dbeaa69 Turn off warning about deprecated CRT functions on for VisualStudio .NET 2005. by Kristján Valur Jónsson · 18 years ago
- ad62489 Bug #1500293: fix memory leaks in _subprocess module. by Georg Brandl · 18 years ago
- 5844b12 Updated version (win32-icons2.zip) from #1490384. by Martin v. Löwis · 18 years ago
- bf92f46 Convert more modules to METH_VARARGS. by Georg Brandl · 18 years ago
- c649ec5 Apply modified version of Collin Winter's patch #1478788 by Nick Coghlan · 18 years ago
- 8301c79 Rest of patch #1490384: Commit icon source, remove by Martin v. Löwis · 18 years ago
- f94323f Added a new macro, Py_IS_FINITE(X). On windows there is an intrinsic for this and it is more efficient than to use !Py_IS_INFINITE(X) && !Py_IS_NAN(X). No change on other platforms by Kristján Valur Jónsson · 18 years ago
- f178e5c Get the Windows build working again (recover from `struct` module changes). by Tim Peters · 18 years ago
- 31a4262 Define SIZEOF_{DOUBLE,FLOAT} on Windows. Else by Tim Peters · 18 years ago
- a43190b Patch #1492356: Port to Windows CE (patch set 1). by Martin v. Löwis · 18 years ago
- f90347f Patch 1490384: New Icons for the PC build. by Martin v. Löwis · 18 years ago
- 879768d Change WindowsError to carry the Win32 error code in winerror, by Martin v. Löwis · 18 years ago
- 449be38 Port to Python 2.5. Drop .DEF file. Change output file names to .pyd. by Martin v. Löwis · 19 years ago
- 2f3f136 Allocate the 0x1D1A0000 base adress for the _ctypes extension module. by Thomas Heller · 19 years ago
- c9d78aa Years in the making. by Tim Peters · 19 years ago
- 9ca8789 Update to Tk 8.4.12 and Tix 8.4.0 by Martin v. Löwis · 19 years ago