1. 81e8ab5 For unknown reasons "Save All" doesn't save the vsprops files. by Christian Heimes · 17 years ago
  2. 9519eb9 Fixes for #1473 and #1476 by Christian Heimes · 17 years ago
  3. 051d1dd The Identifiers and keywords syntax diagram did not appear correctly in the by Mark Summerfield · 17 years ago
  4. bfd4985 Added configurations and files for profile guided optimization (PGO). by Christian Heimes · 17 years ago
  5. 96e7b3d The patch from weck does a better job than my original idea. Thanks! by Christian Heimes · 17 years ago
  6. ad32deb Report #1473 Drop _EXPORTS macros in PCbuild9 by Christian Heimes · 17 years ago
  7. e052dd8 Another fix for test_shutil. Martin pointed out that it breaks some build bots by Christian Heimes · 17 years ago
  8. 90ebd3e os.system: on Windows, avoid encoding the command and use the "wide" function: _wsystem by Amaury Forgeot d'Arc · 17 years ago
  9. 9414015 Fixed bug #1470 by Christian Heimes · 17 years ago
  10. 10c476d Correct test_cvs on Windows, as suggested by Raghuram Devarakonda by Amaury Forgeot d'Arc · 17 years ago
  11. a2d1d7e Oops, I missed this one again (test_univnewlines fails): by Amaury Forgeot d'Arc · 17 years ago
  12. 1ff9910 Issue1395: Universal mode used to duplicate newlines when using read(1). by Amaury Forgeot d'Arc · 17 years ago
  13. 74c29c7 Make test_cmd_line_scripts pass by using a unicode string instead of by Guido van Rossum · 17 years ago
  14. 82f013b Fixed build order of the _ssl project. The openssl project needs to come first because the makefile puts the header files in the right place. by Christian Heimes · 17 years ago
  15. 87c0f1d Merged revisions 59041-59055 via svnmerge from by Guido van Rossum · 17 years ago
  16. 87afcbf Tweak the imports so this script will run stand-alone. by Guido van Rossum · 17 years ago
  17. 97e8029 I've spend some time to automate more steps of the build process. Now bzip2, bsddb, sqlite and openssl are automatically build by prelink steps. by Christian Heimes · 17 years ago
  18. a6b4635 Revert modifications to extract_msvcr71 in 59040, as they didn't actually work. by Martin v. Löwis · 17 years ago
  19. 8a48c4c Removed ReleaseAMD64 and replaced it with platform x64. The x64 builds fine except of the modules that depend on external libraries like tkinter and openssl. And I can't test the build on my 32bit CPU. by Christian Heimes · 17 years ago
  20. 80101a8 I'm using the xxmodule and xxsubtype to test the msvccompiler on Windows. I'm having trouble to compile the module with VS 2008 cl.exe because "initializer is not a constant". by Christian Heimes · 17 years ago
  21. 9cd1775 Merged revisions 59005-59040 via svnmerge from by Christian Heimes · 17 years ago
  22. 81ca7c7 Updates to the msi builder and PCbuild9 directory. msi.py can now create installers from the PCbuild9 directory with MSVCR90.dll. PCbuild and MSVCR71.dll are still the default. by Christian Heimes · 17 years ago
  23. 6030a60 remove now-obsolete test_socket_ssl by Bill Janssen · 17 years ago
  24. bce52be Fixed some build issues and updated docs. by Christian Heimes · 17 years ago
  25. d157e69 The _winreg module returns bytes which must be decoded to unicode, not encoded. by Christian Heimes · 17 years ago
  26. ad14d11 Initial import of new PCbuild9 for VS 2008. It partly based on PCbuild and partly hand crafted with some idea from PCbuild8. I've recreated all the extension module projects. by Christian Heimes · 17 years ago
  27. 1c8e5bc Use 'del' instead of rmpyc.py to remove the pyc and pyo files. by Thomas Heller · 17 years ago
  28. 6317843 Fixed an error in my last commit. The dll files are in the bin directory, not in the lib directory. by Christian Heimes · 17 years ago
  29. 3bff437 I finally figured out why _tkinter and _bsddb didn't compile with PCbuild8. by Christian Heimes · 17 years ago
  30. b7b030e Disable dup() of SSLSocket. I don't think it can be made to work. by Guido van Rossum · 17 years ago
  31. 39eb8fa This is roughly socket2.diff from issue 1378, with a few changes applied by Guido van Rossum · 17 years ago
  32. dd9e3b8 Correct a failing test when test_import is run after test_coding: by Amaury Forgeot d'Arc · 17 years ago
  33. cf171a7 Cleanup of tokenizer.c. by Guido van Rossum · 17 years ago
  34. 053b4f3 Oops, forgot to test this after the merge. by Guido van Rossum · 17 years ago
  35. 3d392eb Merged revisions 58947-59004 via svnmerge from by Guido van Rossum · 17 years ago
  36. 5b8b155 Fix some minor style nits. (I'll leave adding __all__ and making the by Guido van Rossum · 17 years ago
  37. b615069 Fix for VS 2008 by Christian Heimes · 17 years ago
  38. 65f9ace Correction for issue1134: all source files with a coding spec, except latin-1 by Amaury Forgeot d'Arc · 17 years ago
  39. c05f42a add the certificate for the Python SVN repository for testing SSL by Bill Janssen · 17 years ago
  40. 6e027db get SSL support to work again by Bill Janssen · 17 years ago
  41. f83088a Attempt to manually add _ssl to the PCBuild8 solution file. by Amaury Forgeot d'Arc · 17 years ago
  42. b7f17e4 Found another memory leak in longrangeiter. And redo the previous correction by Amaury Forgeot d'Arc · 17 years ago
  43. 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 17 years ago
  44. 6e8ea0f Fix two compiler warnings on Win64. by Thomas Heller · 17 years ago
  45. 4d0ebcc In anticipation of the upcoming ssl patch I've added _ssl to PCbuild8. It's based on a copy of _socket.vcproj. My German version of VS 2005 alters almost every line of pcbuild.sln. Could somebody else please add _ssl.vcproj to the solution? by Christian Heimes · 17 years ago
  46. fc158e2 Patch 1144 by David Binger, fix for parser module. With unittest. by Guido van Rossum · 17 years ago
  47. a1e9ec4 Correct a memory leak: the range() object was not properly freed. by Amaury Forgeot d'Arc · 17 years ago
  48. a041ba5 On Win64, linking the python dll currently fails with 'unresolved by Thomas Heller · 17 years ago
  49. 2be0373 Added some additional checks for sys.std?? is None, see #1440 by Christian Heimes · 17 years ago
  50. 70021d7 The peeping and bawling of the builtin speaker is giving my poor cat the creeps. by Christian Heimes · 17 years ago
  51. 86bc33c Patch 1439 by Bill Janssen. I think this will work. by Guido van Rossum · 17 years ago
  52. e69a08e Fix for bug #1442 pythonstartup addition of minor error checking by Christian Heimes · 17 years ago
  53. 9a68f8c Moved the initalization of the exception before the initialization of sys. by Christian Heimes · 17 years ago
  54. eb9b39b Paths and file names from the fs should always be decoded with PyUnicode_DecodeFSDefault and not PyUnicode_FromString by Christian Heimes · 17 years ago
  55. fef9bba Another #1415 fix for Windows GUI apps by Christian Heimes · 17 years ago
  56. db23308 Fixed space -> tab by Christian Heimes · 17 years ago
  57. 58cb1b8 Fix for #1415 pythonw.exe fails because std streams a missing by Christian Heimes · 17 years ago
  58. f05149a Correction for issue1265 (pdb bug with "with" statement). by Amaury Forgeot d'Arc · 17 years ago
  59. 8161a65 Add -i option. Don't exit when the command fails. Redirect stderr to stdout. by Guido van Rossum · 17 years ago
  60. db4a2ef Another fix for #1414 by Christian Heimes · 17 years ago
  61. f19169f Fix for refleak tests through regrtest.py -R:: bug #1414 by Christian Heimes · 17 years ago
  62. 4fe72f9 Patch 1420 by Ron Adam. by Guido van Rossum · 17 years ago
  63. 1607278 Let's do as Guido says and return None instead of -1 by Christian Heimes · 17 years ago
  64. af935e3 Stop Python code from instantiating a new stdprinter with sys.stderr.__class__() by Christian Heimes · 17 years ago
  65. 32fbe59 Merged revisions 58939-58946 via svnmerge from by Christian Heimes · 17 years ago
  66. 96f3163 Merged revisions 58930-58938 via svnmerge from by Christian Heimes · 17 years ago
  67. 29fd712 Minimal change that disables (AFAICT) the interpolation of \u and \U inside by Guido van Rossum · 17 years ago
  68. aec75c3 Fixed some of the bugs in the readline module. #1425 is still open and several methods don't do enough error checks. by Christian Heimes · 17 years ago
  69. 58da931 Merged revisions 58886-58929 via svnmerge from by Guido van Rossum · 17 years ago
  70. 06cfe95 No need to include windows.h twice by Amaury Forgeot d'Arc · 17 years ago
  71. e018b30 Bug #1415 by Christian Heimes · 17 years ago
  72. 3ab4f65 seek() has to accept any int-like number by Christian Heimes · 17 years ago
  73. 939336d It works w/o the newline on my system but you are right. A newline is nicer. by Christian Heimes · 17 years ago
  74. 4a7cae5 I've created three bat files based on the howto http://wiki.python.org/moin/Building_Python_with_the_free_MS_C_Toolkit by Christian Heimes · 17 years ago
  75. f78f12a Issue 1406: use widechar api for os.environ, on Windows. by Thomas Heller · 17 years ago
  76. 8e42a0a Fixed bug #1081: file.seek allows float arguments by Christian Heimes · 17 years ago
  77. 8bd14fb Fixed #1403 where compileall and py_compile choked on an encoding header in a py file. Both modules need more unit tests. by Christian Heimes · 17 years ago
  78. 1a13d59 Added unit test to verify that #1087 is invalid. os.popen is using subprocess. by Christian Heimes · 17 years ago
  79. 3795b53 Applied patch #1127 from Quentin Gallet Gilles: No tests for inspect.getfullargspec() by Christian Heimes · 17 years ago
  80. 563e33b Added tests from Raghuram Devarakonda for bug #1395 'py3k: duplicated line endings when using read(1)' to outstanding_bugs.py by Christian Heimes · 17 years ago
  81. 7b6fc8e Fixed memoryview constructor. It allowed arbitrary keyword arguments. The bug was found by mykhal from #python. I've also added a small test case in the new test_memoryview.py by Christian Heimes · 17 years ago
  82. c1bdbc3 Cosmetic changes to Christian's patch r58903. by Guido van Rossum · 17 years ago
  83. 7d3bc0a Patch for bug http://bugs.python.org/issue1293 by Christian Heimes · 17 years ago
  84. ef181a7 Reset original sys.stdout, stderr and displayhook even in the case of an error by Christian Heimes · 17 years ago
  85. 27da812 Change a variable to Py_ssize_t to silence a compiler warning (and because it by Brett Cannon · 17 years ago
  86. c6f6008 Remove an unused local variable. by Brett Cannon · 17 years ago
  87. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  88. a19f80c Merged revisions 58862-58885 via svnmerge from by Guido van Rossum · 17 years ago
  89. a3538eb Fixed bug #1384 Windows fix for inspect tests by Christian Heimes · 17 years ago
  90. 7767711 Merged revisions 58817-58861 via svnmerge from by Guido van Rossum · 17 years ago
  91. c4cb3b8 Applied patch #1379 with a minor tweak. by Christian Heimes · 17 years ago
  92. 5894ba7 Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success. by Christian Heimes · 17 years ago
  93. 9c1257e Disabled test_sys_path_with_unicode for now by Christian Heimes · 17 years ago
  94. db62967 Re-add two paragraphs that seem to have been lost during the merge from trunk. by Georg Brandl · 17 years ago
  95. a6c04be Patch 1171 by mfenniak -- allow subclassing of bytes. by Guido van Rossum · 17 years ago
  96. 2cc30da Merged revisions 58742-58816 via svnmerge from by Guido van Rossum · 17 years ago
  97. e845c0f Fixes for issue 1752184, ensuring type objects are always created by Guido van Rossum · 17 years ago
  98. 15c9746 Patch 1373 by Adam Hupp. by Guido van Rossum · 17 years ago
  99. 204093a Removed non ASCII text from test as requested by Guido. by Christian Heimes · 17 years ago
  100. 568065e Fixes issue1371 and reenables those tests. by Gregory P. Smith · 17 years ago