1. bb4b0aa Issue 15792 Correct build options on Win64. Patch by Jeremy Kloth. by Tim Golden · 11 years ago
  2. 8444ebb Issue #18685: Extract template part of _sre.c into separated sre_lib.h file. by Serhiy Storchaka · 11 years ago
  3. c20bcde Issue #18527: Upgrade internal copy of zlib to 1.2.8 by Christian Heimes · 11 years ago
  4. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  5. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  6. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  7. 8fa8ee3 Issue #18701: Remove support of old CPython versions (<3.0) from C code. by Serhiy Storchaka · 11 years ago
  8. c985d08 Closes #18491: Added script-wrapper functionality to launcher source (but not to executable). by Vinay Sajip · 11 years ago
  9. b640491 Issue #18203: Replace malloc() with PyMem_Malloc() in Python modules by Victor Stinner · 11 years ago
  10. 1a7425f Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initialization by Victor Stinner · 11 years ago
  11. c44ff86 add _stat to list of builtin Windows modules by Christian Heimes · 11 years ago
  12. c77d9f3 Issue #11016: Add C implementation of the stat module as _stat by Christian Heimes · 11 years ago
  13. 13728a5 comparing with http://hg.python.org/cpython/ by Christian Heimes · 11 years ago
  14. 46bebee Issue #17134: Add ssl.enum_cert_store() as interface to Windows' cert store. by Christian Heimes · 11 years ago
  15. 22c039b Issue #17903: Added path search changes to launcher. by Vinay Sajip · 11 years ago
  16. ac0ad88 Issue #17931: Resolve confusion on Windows between pids and process handles. by Richard Oudkerk · 11 years ago
  17. 8bda465 Issue #9566: Fix compiler warning on Windows 64-bit by Victor Stinner · 11 years ago
  18. 7e91e77 Close #17931: Fix PyLong_FromPid() on Windows 64-bit: processes are identified by Victor Stinner · 11 years ago
  19. 74ca886 Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant() by Charles-Francois Natali · 11 years ago
  20. 3bfc5f5 merge with 3.3 by Georg Brandl · 11 years ago
  21. 84fc4ba Closes #17962: Build with OpenSSL 1.0.1e on Windows. by Georg Brandl · 11 years ago
  22. a85017f Issue #16694: Add a pure Python implementation of the operator module. by Antoine Pitrou · 11 years ago
  23. e2cef88 Issue #16061: Speed up str.replace() for replacing 1-character strings. by Serhiy Storchaka · 11 years ago
  24. 247109e Issue #17615: On Windows (VS2010), Performances of wmemcmp() to compare Unicode by Victor Stinner · 11 years ago
  25. cd777ea Issue #17615: Comparing two Unicode strings now uses wmemcmp() when possible by Victor Stinner · 11 years ago
  26. 98297f4 merge with 3.3 by Georg Brandl · 11 years ago
  27. 2fd4abe merge with 3.2 branch by Georg Brandl · 11 years ago
  28. 4eb5f1a merge with main repo 3.2 branch by Georg Brandl · 11 years ago
  29. 5fe5b4e #17425: merge 3.3 by Martin v. Löwis · 11 years ago
  30. 005fb74 Fix typo by Martin v. Löwis · 11 years ago
  31. cc0b927 Issue #17425: Build with openssl 1.0.1d on Windows. by Martin v. Löwis · 11 years ago
  32. 5be6d74 Issue #17425: Build with openssl 1.0.0k on Windows. by Martin v. Loewis · 11 years ago
  33. d6f1d16 Fixes issue4653 - Correctly specify the buffer size to FormatMessageW and by Gregory P. Smith · 11 years ago
  34. b803c6c Fixes issue4653 - Correctly specify the buffer size to FormatMessageW and by Gregory P. Smith · 11 years ago
  35. a7d2f00 Copyright update to 2013. by Georg Brandl · 11 years ago
  36. 8ff7f72 Closes #17290: Merged fix from 3.3. by Vinay Sajip · 11 years ago
  37. 66fef9f Closes #17290: Loading cursor now does not persist when launching GUI scripts. by Vinay Sajip · 11 years ago
  38. 404229b Fix compilation error under Windows. by Vinay Sajip · 11 years ago
  39. 2ae8c63 Closes #17028: Allowed Python arguments to be supplied to launcher. by Vinay Sajip · 11 years ago
  40. e5581f9 Identify the ARM compiler. by Martin v. Löwis · 11 years ago
  41. 591c428 Fix #16769. Remove outdated Visual Studio project directories for VC6, VS7.1, and VS8. by Brian Curtin · 11 years ago
  42. b26a9b1 Replace WaitForSingleObject with WaitForSingleObjectEx, by Martin v. Löwis · 11 years ago
  43. 3f50bf6 Drop support for Windows 2000; allow any XP API (but not Vista+). by Martin v. Löwis · 11 years ago
  44. f8704fb Merge 3.3 by Brian Curtin · 12 years ago
  45. e6bfa29 Merge 3.2 by Brian Curtin · 12 years ago
  46. 172e422 Fix #16759. Convert DWORD registry values using PyLong_FromUnsignedLong. by Brian Curtin · 12 years ago
  47. 4482b01 Merge 3.3 by Brian Curtin · 12 years ago
  48. 62cf69e Merge 3.2 by Brian Curtin · 12 years ago
  49. 12706f2 Fix #14420. Use PyLong_AsUnsignedLong to support the full range of DWORD. by Brian Curtin · 12 years ago
  50. 3ba3a3e Issue #15422: get rid of PyCFunction_New macro by Andrew Svetlov · 12 years ago
  51. abb4f48 Fix #14470. Remove mentions of w9xpopen on old versions of Visual Studio. by Brian Curtin · 12 years ago
  52. 445ad99 Fix #14470. Remove w9xpopen per PEP 11. by Brian Curtin · 12 years ago
  53. 2606a6f Issue #16719: Get rid of WindowsError. Use OSError instead by Andrew Svetlov · 12 years ago
  54. 6b2cbeb Issue #16421: allow to load multiple modules from the same shared object. by Andrew Svetlov · 12 years ago
  55. 0a4dfc3 Merge issue #16197: Fix several small errors in winreg documentation. by Andrew Svetlov · 12 years ago
  56. 616f803 Issue #16197: Fix several small errors in winreg documentation. by Andrew Svetlov · 12 years ago
  57. a5e7cd0 Merge 3.3 by Brian Curtin · 12 years ago
  58. 6b879fa Merge 3.2 by Brian Curtin · 12 years ago
  59. e9aeca7 Fix #16197. Update docstrings and documentation to match winreg code. by Brian Curtin · 12 years ago
  60. 8a91549 backout ce9c9cbd1b11, Build the _sha3 module with VS 2008 by Christian Heimes · 12 years ago
  61. a3bc779 Add VS 9 project file for _sha3 module by Christian Heimes · 12 years ago
  62. ca4a525 Build the _sha3 module with VS 2008. by Antoine Pitrou · 12 years ago
  63. f1af705 #16135: Removal of OS/2 support (Remove OS2 and OS/2 references) by Jesus Cea · 12 years ago
  64. b176203 #16135: Removal of OS/2 support (C code and Docs) by Jesus Cea · 12 years ago
  65. ab70e2a #16135: Removal of OS/2 support (posixmodule y platform dependent files) by Jesus Cea · 12 years ago
  66. 08a9012 Bump version to 3.4.0 alpha 0. by Georg Brandl · 12 years ago
  67. a562ed0 Issue #8847: Merge with 3.2 by Martin v. Löwis · 12 years ago
  68. 75aeaa9 Issue #11626: Add _SizeT functions to stable ABI. by Martin v. Löwis · 12 years ago
  69. 9c56409 Issue #15146: Add PyType_FromSpecWithBases. Patch by Robin Schreiber. by Martin v. Löwis · 12 years ago
  70. 1641cea Issue #15150: regenerate python3stub.def. by Martin v. Löwis · 12 years ago
  71. 2c30ee1 Merge with 3.2 by Martin v. Löwis · 12 years ago
  72. 7349eb2 The build target of this makefile is python3.dll, not python32.dll. by Martin v. Löwis · 12 years ago
  73. 7800f75 Issue #15042: Add PyState_AddModule and PyState_RemoveModule. by Martin v. Löwis · 12 years ago
  74. fe078f7 branch merge by Brian Curtin · 12 years ago
  75. 6b2cf01 Remove associator project - it's not needed by Brian Curtin · 12 years ago
  76. 6a8ca3e Remove the original license, as this was contributed under Vinay Sajip's agreement. by Martin v. Löwis · 12 years ago
  77. af21ebb Fix UNICODE glitch. by Martin v. Löwis · 12 years ago
  78. 91a3468 Fix off-by-one error. by Martin v. Löwis · 12 years ago
  79. f36d65c Use GetEnvironmentVariableW instead of _wgetenv to silence VC warnings. by Martin v. Löwis · 12 years ago
  80. 56bf6f8 Add version resource. by Martin v. Löwis · 12 years ago
  81. 9698bde Add associator by Brian Curtin · 12 years ago
  82. 07165f7 Add launcher source and resources by Brian Curtin · 12 years ago
  83. 58440c9 Issue #15070: fix VS9.0 build regression by Antoine Pitrou · 12 years ago
  84. 7ded1f0 Implemented PEP 405 (Python virtual environments). by Vinay Sajip · 12 years ago
  85. e01eb4c Upgrade OpenSSL to 1.0.1c by Martin v. Löwis · 12 years ago
  86. 3f90311 merge 3.2 by Martin v. Löwis · 12 years ago
  87. 3407dfb Upgrade OpenSSL to 1.0.0j by Martin v. Löwis · 12 years ago
  88. f398a94 Issue 14813: Fix Visual Studio 2008 build after the move into the PC/VS9.0 by Stefan Krah · 12 years ago
  89. 29e861d Upgrade sqlite to 3.7.12. by Martin v. Löwis · 12 years ago
  90. 87960da Upgrade bzip2 to 1.0.6. by Martin v. Löwis · 12 years ago
  91. b432334 Relabel bzip2 filters. by Martin v. Löwis · 12 years ago
  92. ecc5877 Upgrade bzip2 to 1.0.6. by Martin v. Löwis · 12 years ago
  93. 6100946 Move out VS9 project files to PC\VS9.0 folder. Fixes #13210 by Brian Curtin · 12 years ago
  94. 401f9f3 Fix #13210. Port the Windows build from VS2008 to VS2010. by Brian Curtin · 12 years ago
  95. 3ad58f2 Kill remaining mentions of import_nt.c by Antoine Pitrou · 12 years ago
  96. 6b9b727 Remove dead Windows code which no longer will compile. by Brett Cannon · 12 years ago
  97. ce418b4 Issue #14605: Stop having implicit entries for sys.meta_path. by Brett Cannon · 12 years ago
  98. 23bba4c Issue #11750: The Windows API functions scattered in the _subprocess and by Antoine Pitrou · 12 years ago
  99. 6f44d66 Issue #13959: Rename imp to _imp and add Lib/imp.py and begin by Brett Cannon · 12 years ago
  100. c014df7 Merge with 3.2: use ws2_32.lib rather than wsock32.lib on windows. by Kristján Valur Jónsson · 12 years ago