1. 4472083 Renamed bytesobject.c to bytearrayobject.c by Christian Heimes · 16 years ago
  2. 5f54340 Introduce a user macro named $(externalsDir), which should point to the root directory of where all the external sources should live. Developers can change this value if their external sources live elsewhere. The default of '..\..' matches the current status quo. by Trent Nelson · 16 years ago
  3. 1aed624 Backport fast alternate io.BytesIO implementation. by Alexandre Vassalotti · 16 years ago
  4. 5be0176 Re-added getbuildinfo.c solution item by Christian Heimes · 16 years ago
  5. 4b964f9 Add the 'json' package. Code taken from simplejson 1.9 and contributed by Bob by Brett Cannon · 16 years ago
  6. 81ad6a1 Added new files to Windows project files by Christian Heimes · 16 years ago
  7. 14d6b0f Update project files for all Windows supported compilers by Amaury Forgeot d'Arc · 16 years ago
  8. a2d7f4c Added new files to the pcbuild files by Christian Heimes · 16 years ago
  9. 7adc776 Issue 2408: remove the _types module by Amaury Forgeot d'Arc · 16 years ago
  10. 495cf99 Issue #2513: enable 64bit cross compilation on windows. by Mark Hammond · 16 years ago
  11. 5a4d668 Don't run kill_python as part of the build process. Change the buildbots so they have to call it explicitly instead. by Trent Nelson · 16 years ago
  12. 2aae1d9 Make kill_python a little more forgiving if it can't obtain a snapshot of module information for a given python[_d].exe process. Failing here was too pessimistic; the python[_d].exe process may be owned by another user, which is the case in some buildbot environments. by Trent Nelson · 16 years ago
  13. 8d69c1f Add the correct OutputFile values for debug builds. Fixes r62129's commit. by Trent Nelson · 16 years ago
  14. d6dffbc Reimplement kill_python. The existing version had a number of flaws, namely, it didn't work for x64 and it wasn't precise about which python_d.exe it was killing -- it just killed the first one it came across that happened to have 'pcbuild\python_d.exe' or 'build\python_d.exe' in it's path. The new version has been rewritten from the ground up and now lives in PCbuild, instead of Tools\buildbot, and it has also been incorporated into the Visual Studio solution (pcbuild.sln) as 'kill_python'. The solution has also been altered such that kill_python is called where necessary in the build process in order to prevent any linking errors due to open file locks. In lieu of this, all of the existing bits and pieces in Tools\buildbot that called out to kill_python at various points have also been removed as they are now obsolete. Tested on both Win32 and x64. by Trent Nelson · 16 years ago
  15. dbc114a Update information pertaining to building external components, as well as notes on x64 builds. This file now accurately describes the build process as is; however, there's still a lot of room for improvement, especially with regards to how we build Tcl/Tk, Tix, and OpenSSL. Watch this space for further improvements. by Trent Nelson · 16 years ago
  16. a82e8db Hopefully added _fileio module to the Windows build system by Christian Heimes · 16 years ago
  17. 1a6387e Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from by Christian Heimes · 16 years ago
  18. 2b1ec17 Remove extraneous apostrophe and semi-colon from AdditionalIncludeDirectories. by Trent Nelson · 16 years ago
  19. 05a9664 Refine the Visual Studio 2008 build solution in order to improve how we deal with external components, as well as fixing outstanding issues with Windows x64 build support. Introduce two new .vcproj files, _bsddb44.vcproj and sqlite3.vcproj, which replace the previous pre-link event scripts for _bsddb and _sqlite3 respectively. The new project files inherit from our property files as if they were any other Python module. This has numerous benefits. First, the components get built with exactly the same compiler flags and settings as the rest of Python. Second, it makes it much easier to debug problems in the external components when they're part of the build system. Third, they'll benefit from profile guided optimisation in the release builds, just like the rest of Python core. by Trent Nelson · 16 years ago
  20. 3ce7675 Issue 2286: bump up the stack size of the 64-bit debug python_d.exe to 2100000. The default value of 200000 causes a stack overflow at 1965 iterations of r_object() in marshal.c, 35 iterations before the 2000 limit enforced by MAX_MARSHAL_STACK_DEPTH. by Trent Nelson · 16 years ago
  21. bf7b0b7 Patch #2284: add -x64 option to rt.bat. by Martin v. Löwis · 16 years ago
  22. 8c4e799 Rely on x64 platform configuration when building _bsddb on AMD64. by Martin v. Löwis · 16 years ago
  23. d9153fd Make _hashlib depend on pythoncore. by Martin v. Löwis · 16 years ago
  24. 9e05135 Port build_ssl.py to 2.4; support HOST_PYTHON variable by Martin v. Löwis · 16 years ago
  25. f06858d Make _hashlib a separate project. by Martin v. Löwis · 16 years ago
  26. c5f05e4 Patch #2167 from calvin: Remove unused imports by Christian Heimes · 16 years ago
  27. a73fbe7 Added future_builtins, which contains PEP 3127 compatible versions of hex() and oct(). by Eric Smith · 16 years ago
  28. e7fa408 Compilation was broken on Windows since the introduction of Advanced String Formatting. by Amaury Forgeot d'Arc · 16 years ago
  29. 95d6447 Issue #1706: Require Windows 2000+ by Christian Heimes · 16 years ago
  30. 3af3ecc Fixed paths to Windows build directories in build_ext.py by Christian Heimes · 16 years ago
  31. eb65c99 Revert revision 59913, because it was wrong: by Thomas Heller · 16 years ago
  32. 348fd45 The sqlite3 dll, when compiled in debug mode, must be linked with /MDd by Thomas Heller · 16 years ago
  33. d17315f Add an important missing blank. by Thomas Heller · 16 years ago
  34. 44c38c1 Reflow a paragraph, and fix a typo. by Thomas Heller · 16 years ago
  35. 3247aa9 Set the output file in the _ctypes Debug|x64 configuration. by Thomas Heller · 17 years ago
  36. 3001c54 Final adjustments for #1601 by Christian Heimes · 17 years ago
  37. 1beea3b Issue #1726: Remove Python/atof.c from PCBuild/pythoncore.vcproj by Christian Heimes · 17 years ago
  38. fed3ebc Made vs9to8 Unix compatible by Christian Heimes · 17 years ago
  39. d9fbab2 Removed PCbuild8/ directory and added a new build directory for VS 2005 by Christian Heimes · 17 years ago
  40. b31131c Don't link with Tix; Tix is loaded dynamically by Tcl. by Martin v. Löwis · 17 years ago
  41. 3adfe9a Renamed PCBuild9 directory to PCBuild by Christian Heimes · 17 years ago
  42. 915d5d9 Moved PCbuild directory to PC/VS7.1 by Christian Heimes · 17 years ago
  43. 0a8143f Applied patch #1635: Float patch for inf and nan on Windows (and other platforms). by Christian Heimes · 17 years ago
  44. f15c66e The new float repr causes too much trouble and pain. I'm disabling the feature until we have sorted out the issues on all machines. 64bit machines seem to have issues and Guido has reported even worse. by Christian Heimes · 17 years ago
  45. 284d927 Backport of r59456:59458 from py3k to trunk by Christian Heimes · 17 years ago
  46. fb57e7e Rename import library for debug build to _msi_d.lib. by Martin v. Löwis · 17 years ago
  47. 285216c Add bufferoverflowU.lib to PCBuild\_bsddb.vcproj. Build sqlite3.dll and bsddb. by Thomas Heller · 17 years ago
  48. 46950ba Specify the bufferoverflowU.lib to the makefile on the command line by Thomas Heller · 17 years ago
  49. d34f9e9 Revert this change, since it breaks the win32 build: by Thomas Heller · 17 years ago
  50. c8720b9 Add bufferoverflowU.lib to the libraries needed by _ssl (is this the by Thomas Heller · 17 years ago
  51. 20a6e1c Revert commit 55855. by Thomas Heller · 17 years ago
  52. a7c583a For now, disable the _bsddb, _sqlite3, _ssl, _testcapi, _tkinter by Thomas Heller · 17 years ago
  53. ab8e279 Build _ctypes and _ctypes_test in the ReleaseAMD64 configuration. by Thomas Heller · 17 years ago
  54. 7e93587 Try to remove rgbimg from Windows builds. by Brett Cannon · 17 years ago
  55. eb97988 Prepare collections module for pure python code entries. by Raymond Hettinger · 17 years ago
  56. cc0eba9 Merge 53501 and 53502 from 25 branch: by Martin v. Löwis · 17 years ago
  57. 83955ef update to (c) years to include 2007 by Anthony Baxter · 18 years ago
  58. c9e82f6 Patch #1576954: Update VC6 build directory; remove redundant by Martin v. Löwis · 18 years ago
  59. 7dc77ce Build _ctypes.pyd for win AMD64 into the MSVC project file. by Thomas Heller · 18 years ago
  60. 3c93339 Try to get the windows bots working again with the new peephole.c by Neal Norwitz · 18 years ago
  61. 132bbb3 Try to get Windows bots working again. Take 2 by Neal Norwitz · 18 years ago
  62. 59e9ac8 Merge 51340 and 51341 from 2.5 branch: by Martin v. Löwis · 18 years ago
  63. 596fc9c Make cl build step compile-only (/c). Remove libs from source list. by Martin v. Löwis · 18 years ago
  64. a09fd6e Build _hashlib on Windows. Build OpenSSL with masm assembler code. by Martin v. Löwis · 18 years ago
  65. db7b443 Fix #1534738: win32 debug version of _msi must be _msi_d.pyd, not _msi.pyd. by Thomas Heller · 18 years ago
  66. d17301f Enable the building of the _types module on Windows. by Barry Warsaw · 18 years ago
  67. c7990b5 Fix Debug build of _ssl. by Martin v. Löwis · 18 years ago
  68. 1def4fa Add debug output to analyse buildbot failure. by Martin v. Löwis · 18 years ago
  69. d73168d Extend build_ssl to Win64, using VSExtComp. by Martin v. Löwis · 18 years ago
  70. 1bf5959 Patch #1509163: MS Toolkit Compiler no longer available by Martin v. Löwis · 18 years ago
  71. c649ec5 Apply modified version of Collin Winter's patch #1478788 by Nick Coghlan · 18 years ago
  72. 7b9558d Conversion of exceptions over from faked-up classes to new-style C types. by Richard Jones · 18 years ago
  73. f178e5c Get the Windows build working again (recover from `struct` module changes). by Tim Peters · 18 years ago
  74. f90347f Patch 1490384: New Icons for the PC build. by Martin v. Löwis · 18 years ago
  75. 79b0f85 Use GS- and bufferoverlowU.lib where appropriate, for AMD64. by Martin v. Löwis · 18 years ago
  76. 3e99c0a Updated the sqlite3 module to the external pysqlite 2.2.2 version. by Gerhard Häring · 18 years ago
  77. 07b3508 Upgrade to vsextcomp 0.8 (and thus the SDK for W2k3SP1) by Martin v. Löwis · 18 years ago
  78. 112d4ec Fix typo. by Thomas Heller · 18 years ago
  79. 48bbaf2 Patch #1470875: Building Python with MS Free Compiler. by Martin v. Löwis · 18 years ago
  80. 2f3f136 Allocate the 0x1D1A0000 base adress for the _ctypes extension module. by Thomas Heller · 18 years ago
  81. 2f36caf Define WIN32, to get proper struct alignment in WinSock2.h. by Martin v. Löwis · 18 years ago
  82. 8e7b490 upgrade to final version of pysqlite 2.2.0 by Anthony Baxter · 18 years ago
  83. e510bd1 Adjust sqlite3 build process to Win64. by Martin v. Löwis · 18 years ago
  84. cbb9f97 update to correct version of pysqlite by Anthony Baxter · 18 years ago
  85. cecb885 Fix Debug, Itanium, AMD64 configurations by Martin v. Löwis · 18 years ago
  86. 1a494bd Add sqlite3 to the Windows build process. by Martin v. Löwis · 18 years ago
  87. 9161a0d Looks like someone renamed (or something) md5c.c to md5.c. by Tim Peters · 18 years ago
  88. f5af2aa Patch #1462700: Make _ctypes_test depend on _ctypes. by Martin v. Löwis · 18 years ago
  89. 0a4e98b Allow supression of subwcrev.exe invocation on a per-working-copy basis. by Martin v. Löwis · 18 years ago
  90. 9ca8789 Update to Tk 8.4.12 and Tix 8.4.0 by Martin v. Löwis · 18 years ago
  91. a0f4549 Update to OpenSSL 0.9.8a by Martin v. Löwis · 18 years ago
  92. 10be10c Remove regsub, reconvert, regex, regex_syntax and everything under lib-old. by Neal Norwitz · 18 years ago
  93. 6ea6e20 For x86 Release and Debug builds, remove the /Wp64 compiler flag, it by Thomas Heller · 18 years ago
  94. 6da8ceb It's necessary to do a Debug build of the bsddb project too. by Tim Peters · 18 years ago
  95. 7ccbb07 Minor changes. by Tim Peters · 18 years ago
  96. 32d996f Trimmed trailing whitespace. by Tim Peters · 18 years ago
  97. b091241 Fix build process of bsddb for IA64 and AMD64. by Martin v. Löwis · 18 years ago
  98. f6f7925 Update to bsddb 4.4.20. by Martin v. Löwis · 18 years ago
  99. 14c1cf8 Update to bzip2 1.0.3 Make buildbot slaves automatically fetch bzip2 1.0.3. by Martin v. Löwis · 18 years ago
  100. d39ab5b Move buildbot scripts to Tools/buildbot. by Martin v. Löwis · 18 years ago