- 6030a60 remove now-obsolete test_socket_ssl by Bill Janssen · 17 years ago
- bce52be Fixed some build issues and updated docs. by Christian Heimes · 17 years ago
- d157e69 The _winreg module returns bytes which must be decoded to unicode, not encoded. by Christian Heimes · 17 years ago
- 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
- 1c8e5bc Use 'del' instead of rmpyc.py to remove the pyc and pyo files. by Thomas Heller · 17 years ago
- 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
- 3bff437 I finally figured out why _tkinter and _bsddb didn't compile with PCbuild8. by Christian Heimes · 17 years ago
- b7b030e Disable dup() of SSLSocket. I don't think it can be made to work. by Guido van Rossum · 17 years ago
- 39eb8fa This is roughly socket2.diff from issue 1378, with a few changes applied by Guido van Rossum · 17 years ago
- dd9e3b8 Correct a failing test when test_import is run after test_coding: by Amaury Forgeot d'Arc · 17 years ago
- cf171a7 Cleanup of tokenizer.c. by Guido van Rossum · 17 years ago
- 053b4f3 Oops, forgot to test this after the merge. by Guido van Rossum · 17 years ago
- 3d392eb Merged revisions 58947-59004 via svnmerge from by Guido van Rossum · 17 years ago
- 5b8b155 Fix some minor style nits. (I'll leave adding __all__ and making the by Guido van Rossum · 17 years ago
- b615069 Fix for VS 2008 by Christian Heimes · 17 years ago
- 65f9ace Correction for issue1134: all source files with a coding spec, except latin-1 by Amaury Forgeot d'Arc · 17 years ago
- c05f42a add the certificate for the Python SVN repository for testing SSL by Bill Janssen · 17 years ago
- 6e027db get SSL support to work again by Bill Janssen · 17 years ago
- f83088a Attempt to manually add _ssl to the PCBuild8 solution file. by Amaury Forgeot d'Arc · 17 years ago
- b7f17e4 Found another memory leak in longrangeiter. And redo the previous correction by Amaury Forgeot d'Arc · 17 years ago
- 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 17 years ago
- 6e8ea0f Fix two compiler warnings on Win64. by Thomas Heller · 17 years ago
- 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
- fc158e2 Patch 1144 by David Binger, fix for parser module. With unittest. by Guido van Rossum · 17 years ago
- a1e9ec4 Correct a memory leak: the range() object was not properly freed. by Amaury Forgeot d'Arc · 17 years ago
- a041ba5 On Win64, linking the python dll currently fails with 'unresolved by Thomas Heller · 17 years ago
- 2be0373 Added some additional checks for sys.std?? is None, see #1440 by Christian Heimes · 17 years ago
- 70021d7 The peeping and bawling of the builtin speaker is giving my poor cat the creeps. by Christian Heimes · 17 years ago
- 86bc33c Patch 1439 by Bill Janssen. I think this will work. by Guido van Rossum · 17 years ago
- e69a08e Fix for bug #1442 pythonstartup addition of minor error checking by Christian Heimes · 17 years ago
- 9a68f8c Moved the initalization of the exception before the initialization of sys. by Christian Heimes · 17 years ago
- 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
- fef9bba Another #1415 fix for Windows GUI apps by Christian Heimes · 17 years ago
- db23308 Fixed space -> tab by Christian Heimes · 17 years ago
- 58cb1b8 Fix for #1415 pythonw.exe fails because std streams a missing by Christian Heimes · 17 years ago
- f05149a Correction for issue1265 (pdb bug with "with" statement). by Amaury Forgeot d'Arc · 17 years ago
- 8161a65 Add -i option. Don't exit when the command fails. Redirect stderr to stdout. by Guido van Rossum · 17 years ago
- db4a2ef Another fix for #1414 by Christian Heimes · 17 years ago
- f19169f Fix for refleak tests through regrtest.py -R:: bug #1414 by Christian Heimes · 17 years ago
- 4fe72f9 Patch 1420 by Ron Adam. by Guido van Rossum · 17 years ago
- 1607278 Let's do as Guido says and return None instead of -1 by Christian Heimes · 17 years ago
- af935e3 Stop Python code from instantiating a new stdprinter with sys.stderr.__class__() by Christian Heimes · 17 years ago
- 32fbe59 Merged revisions 58939-58946 via svnmerge from by Christian Heimes · 17 years ago
- 96f3163 Merged revisions 58930-58938 via svnmerge from by Christian Heimes · 17 years ago
- 29fd712 Minimal change that disables (AFAICT) the interpolation of \u and \U inside by Guido van Rossum · 17 years ago
- 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
- 58da931 Merged revisions 58886-58929 via svnmerge from by Guido van Rossum · 17 years ago
- 06cfe95 No need to include windows.h twice by Amaury Forgeot d'Arc · 17 years ago
- e018b30 Bug #1415 by Christian Heimes · 17 years ago
- 3ab4f65 seek() has to accept any int-like number by Christian Heimes · 17 years ago
- 939336d It works w/o the newline on my system but you are right. A newline is nicer. by Christian Heimes · 17 years ago
- 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
- f78f12a Issue 1406: use widechar api for os.environ, on Windows. by Thomas Heller · 17 years ago
- 8e42a0a Fixed bug #1081: file.seek allows float arguments by Christian Heimes · 17 years ago
- 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
- 1a13d59 Added unit test to verify that #1087 is invalid. os.popen is using subprocess. by Christian Heimes · 17 years ago
- 3795b53 Applied patch #1127 from Quentin Gallet Gilles: No tests for inspect.getfullargspec() by Christian Heimes · 17 years ago
- 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
- 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
- c1bdbc3 Cosmetic changes to Christian's patch r58903. by Guido van Rossum · 17 years ago
- 7d3bc0a Patch for bug http://bugs.python.org/issue1293 by Christian Heimes · 17 years ago
- ef181a7 Reset original sys.stdout, stderr and displayhook even in the case of an error by Christian Heimes · 17 years ago
- 27da812 Change a variable to Py_ssize_t to silence a compiler warning (and because it by Brett Cannon · 17 years ago
- c6f6008 Remove an unused local variable. by Brett Cannon · 17 years ago
- 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
- a19f80c Merged revisions 58862-58885 via svnmerge from by Guido van Rossum · 17 years ago
- a3538eb Fixed bug #1384 Windows fix for inspect tests by Christian Heimes · 17 years ago
- 7767711 Merged revisions 58817-58861 via svnmerge from by Guido van Rossum · 17 years ago
- c4cb3b8 Applied patch #1379 with a minor tweak. by Christian Heimes · 17 years ago
- 5894ba7 Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success. by Christian Heimes · 17 years ago
- 9c1257e Disabled test_sys_path_with_unicode for now by Christian Heimes · 17 years ago
- db62967 Re-add two paragraphs that seem to have been lost during the merge from trunk. by Georg Brandl · 17 years ago
- a6c04be Patch 1171 by mfenniak -- allow subclassing of bytes. by Guido van Rossum · 17 years ago
- 2cc30da Merged revisions 58742-58816 via svnmerge from by Guido van Rossum · 17 years ago
- e845c0f Fixes for issue 1752184, ensuring type objects are always created by Guido van Rossum · 17 years ago
- 15c9746 Patch 1373 by Adam Hupp. by Guido van Rossum · 17 years ago
- 204093a Removed non ASCII text from test as requested by Guido. by Christian Heimes · 17 years ago
- 568065e Fixes issue1371 and reenables those tests. by Gregory P. Smith · 17 years ago
- 48decfe Remove file that should have been removed during the merge. by Georg Brandl · 17 years ago
- 3c8ce77 Add new directory "using". This should have been in the merge patch, by Georg Brandl · 17 years ago
- b0e8688 Remove duplicate entry for PyObject_AsFileDescriptor. (Really, this time.) by Georg Brandl · 17 years ago
- 9afde1c #1370: Finish the merge r58749, log below, by resolving all conflicts in Doc/. by Georg Brandl · 17 years ago
- 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 17 years ago
- 1d1a400 Added unit test for bug http://bugs.python.org/issue1293 by Christian Heimes · 17 years ago
- 9033339 Fixed unit tests for os.environ. Some of the tests didn't test at all because os.environ was empty. by Christian Heimes · 17 years ago
- e02647a Oh, I missed the output part of the test ... by Christian Heimes · 17 years ago
- 9289bfc Fixed test_dumbdbm by Christian Heimes · 17 years ago
- 0b48954 Fixed bug in _fileio.c and test_pep277. On Windows IOError.filename was not set because the name is stored in widename. by Christian Heimes · 17 years ago
- 6ae5d7f Fixed gettext module for Windows. The metadata lines always end in \n and not in os.linesep by Christian Heimes · 17 years ago
- c6ecfcd Minor correction to the stdprinter object. by Guido van Rossum · 17 years ago
- 826d897 Patch 1352 (continued in issue 1329) by Christian Heimes. by Guido van Rossum · 17 years ago
- 1cd5bd2 make sure to write bytes instead of strings to underlying socket channel by Bill Janssen · 17 years ago
- 8cfe3a3 remove ord() calls on what are now integers rather than characters by Bill Janssen · 17 years ago
- 316414e Fix typo. by Georg Brandl · 17 years ago
- 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 17 years ago
- 2673a57 Bug #1356: Avoid using the C99 keyword 'restrict'. by Martin v. Löwis · 17 years ago
- 6203d8f Patch 1341 by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
- 3db4686 fix typo by Fred Drake · 17 years ago
- 5d21255 Issue 1340 by Amaury Forgeot d'Arc (with help from Christian Heimes, by Guido van Rossum · 17 years ago
- 1b16ca4 URLError now takes only a single parameter. This was causing by Neal Norwitz · 17 years ago