2007-11-27 |
Christian Heimes | Merged revisions 59187-59192 via svnmerge from |
commit | commitdiff | tree | snapshot |
2007-11-27 |
Christian Heimes | The changes to PyMethod_New and the removal of unbound... |
commit | commitdiff | tree | snapshot |
2007-11-27 |
Georg Brandl | Futher update docs after unbound method removal. |
commit | commitdiff | tree | snapshot |
2007-11-27 |
Christian Heimes | Removed the API to create unbound methods and simplifie... |
commit | commitdiff | tree | snapshot |
2007-11-26 |
Guido van Rossum | Merged revisions 59107-59186 via svnmerge from |
commit | commitdiff | tree | snapshot |
2007-11-26 |
Christian Heimes | Minor cleanup |
commit | commitdiff | tree | snapshot |
2007-11-25 |
Christian Heimes | Patch from Georg Brandl and me for #1493 |
commit | commitdiff | tree | snapshot |
2007-11-25 |
Christian Heimes | Fixed bug in input() which broke pdb |
commit | commitdiff | tree | snapshot |
2007-11-25 |
Georg Brandl | #1479: Fix refleak in csv module (from rev 59062). |
commit | commitdiff | tree | snapshot |
2007-11-25 |
Georg Brandl | #1480: fix refleak in the sqlite module. |
commit | commitdiff | tree | snapshot |
2007-11-25 |
Georg Brandl | Remove unused variable. |
commit | commitdiff | tree | snapshot |
2007-11-24 |
Georg Brandl | Use proper API for iter.__next__(). |
commit | commitdiff | tree | snapshot |
2007-11-24 |
Christian Heimes | Added a simple helper script to build the dependencies... |
commit | commitdiff | tree | snapshot |
2007-11-24 |
Christian Heimes | Updated readme.txt |
commit | commitdiff | tree | snapshot |
2007-11-24 |
Christian Heimes | Fixed a newline problem |
commit | commitdiff | tree | snapshot |
2007-11-24 |
Amaury Forgeot... | fix #1409: cell variables were not initialized, |
commit | commitdiff | tree | snapshot |
2007-11-23 |
Guido van Rossum | Open output files in text mode, after all they are... |
commit | commitdiff | tree | snapshot |
2007-11-23 |
Christian Heimes | Paul had the great idea to add /DNO_TCL to the pre... |
commit | commitdiff | tree | snapshot |
2007-11-23 |
Christian Heimes | Implemented request from Marc-Andre Lemburg |
commit | commitdiff | tree | snapshot |
2007-11-23 |
Christian Heimes | Added code to pre-generate makefiles and assembly files... |
commit | commitdiff | tree | snapshot |
2007-11-23 |
Christian Heimes | Cleanup |
commit | commitdiff | tree | snapshot |
2007-11-22 |
Amaury Forgeot... | Just inline a function, and discover that it can only... |
commit | commitdiff | tree | snapshot |
2007-11-22 |
Amaury Forgeot... | Stream functions like read() are supposed to return... |
commit | commitdiff | tree | snapshot |
2007-11-22 |
Amaury Forgeot... | Problem found while converting from PyBytes to PyString: |
commit | commitdiff | tree | snapshot |
2007-11-22 |
Georg Brandl | Fix, thanks to Nick. |
commit | commitdiff | tree | snapshot |
2007-11-22 |
Georg Brandl | Update docs for buffer -> bytearray rename. |
commit | commitdiff | tree | snapshot |
2007-11-22 |
Christian Heimes | Revert change of bz2.vcproj |
commit | commitdiff | tree | snapshot |
2007-11-22 |
Christian Heimes | Fixed PGO builds |
commit | commitdiff | tree | snapshot |
2007-11-22 |
Walter Dörwald | Use PyString instead of PyBytes in wrap_strftime(). |
commit | commitdiff | tree | snapshot |
2007-11-22 |
Christian Heimes | Removed blocks from several functions in unicodeobject... |
commit | commitdiff | tree | snapshot |
2007-11-22 |
Christian Heimes | os.environ contains PyUnicode instances and not PyStrin... |
commit | commitdiff | tree | snapshot |
2007-11-22 |
Christian Heimes | Removed some leftovers from the str8 days |
commit | commitdiff | tree | snapshot |
2007-11-22 |
Amaury Forgeot... | Typo in bytes.replace(): the buffer interface was alway... |
commit | commitdiff | tree | snapshot |
2007-11-22 |
Amaury Forgeot... | PyString_AsString is permissive and accepts unicode... |
commit | commitdiff | tree | snapshot |
2007-11-22 |
Amaury Forgeot... | In audioop, return PyString instead of PyBytes. |
commit | commitdiff | tree | snapshot |
2007-11-22 |
Guido van Rossum | Merged revisions 59105-59106 via svnmerge from |
commit | commitdiff | tree | snapshot |
2007-11-22 |
Guido van Rossum | Merged revisions 59077-59104 via svnmerge from |
commit | commitdiff | tree | snapshot |
2007-11-21 |
Guido van Rossum | Add ABC ByteString which unifies bytes and bytearray... |
commit | commitdiff | tree | snapshot |
2007-11-21 |
Amaury Forgeot... | when building with VC 2008, turn off unicode as default... |
commit | commitdiff | tree | snapshot |
2007-11-21 |
Guido van Rossum | Convert the socket module to insist on bytes for input... |
commit | commitdiff | tree | snapshot |
2007-11-21 |
Guido van Rossum | Fix error messages for buffer objects to say "bytes... |
commit | commitdiff | tree | snapshot |
2007-11-21 |
Guido van Rossum | More PyBytes -> PyString. |
commit | commitdiff | tree | snapshot |
2007-11-21 |
Guido van Rossum | Make os.read() return bytes, not bytearray. |
commit | commitdiff | tree | snapshot |
2007-11-21 |
Guido van Rossum | Return PyString, not PyBytes, for a bytes array. |
commit | commitdiff | tree | snapshot |
2007-11-21 |
Guido van Rossum | Fix an issue with str.translate() in IDLE -- str.transl... |
commit | commitdiff | tree | snapshot |
2007-11-21 |
Guido van Rossum | Make read() and certificate() return bytes instead... |
commit | commitdiff | tree | snapshot |
2007-11-21 |
Guido van Rossum | Rename buffer -> bytearray. |
commit | commitdiff | tree | snapshot |
2007-11-21 |
Christian Heimes | Final fix for #1403 |
commit | commitdiff | tree | snapshot |
2007-11-21 |
Christian Heimes | Removed character set = unicode as requested by Amaury |
commit | commitdiff | tree | snapshot |
2007-11-21 |
Christian Heimes | Fixed bug #1020 pyexpat.XMParserType broken (was: pydoc... |
commit | commitdiff | tree | snapshot |
2007-11-21 |
Christian Heimes | Patch +1478 from Joseph Armbruster |
commit | commitdiff | tree | snapshot |
2007-11-20 |
Christian Heimes | Merged revisions 59056-59076 via svnmerge from |
commit | commitdiff | tree | snapshot |
2007-11-20 |
Christian Heimes | For unknown reasons "Save All" doesn't save the vsprops... |
commit | commitdiff | tree | snapshot |
2007-11-20 |
Christian Heimes | Fixes for #1473 and #1476 |
commit | commitdiff | tree | snapshot |
2007-11-20 |
Mark Summerfield | The Identifiers and keywords syntax diagram did not... |
commit | commitdiff | tree | snapshot |
2007-11-20 |
Christian Heimes | Added configurations and files for profile guided optim... |
commit | commitdiff | tree | snapshot |
2007-11-20 |
Christian Heimes | The patch from weck does a better job than my original... |
commit | commitdiff | tree | snapshot |
2007-11-20 |
Christian Heimes | Report #1473 Drop _EXPORTS macros in PCbuild9 |
commit | commitdiff | tree | snapshot |
2007-11-20 |
Christian Heimes | Another fix for test_shutil. Martin pointed out that... |
commit | commitdiff | tree | snapshot |
2007-11-20 |
Amaury Forgeot... | os.system: on Windows, avoid encoding the command and... |
commit | commitdiff | tree | snapshot |
2007-11-20 |
Christian Heimes | Fixed bug #1470 |
commit | commitdiff | tree | snapshot |
2007-11-19 |
Amaury Forgeot... | Correct test_cvs on Windows, as suggested by Raghuram... |
commit | commitdiff | tree | snapshot |
2007-11-19 |
Amaury Forgeot... | Oops, I missed this one again (test_univnewlines fails): |
commit | commitdiff | tree | snapshot |
2007-11-19 |
Amaury Forgeot... | Issue1395: Universal mode used to duplicate newlines... |
commit | commitdiff | tree | snapshot |
2007-11-19 |
Guido van Rossum | Make test_cmd_line_scripts pass by using a unicode... |
commit | commitdiff | tree | snapshot |
2007-11-19 |
Christian Heimes | Fixed build order of the _ssl project. The openssl... |
commit | commitdiff | tree | snapshot |
2007-11-19 |
Guido van Rossum | Merged revisions 59041-59055 via svnmerge from |
commit | commitdiff | tree | snapshot |
2007-11-19 |
Guido van Rossum | Tweak the imports so this script will run stand-alone. |
commit | commitdiff | tree | snapshot |
2007-11-19 |
Christian Heimes | I've spend some time to automate more steps of the... |
commit | commitdiff | tree | snapshot |
2007-11-19 |
Martin v. Löwis | Revert modifications to extract_msvcr71 in 59040, |
commit | commitdiff | tree | snapshot |
2007-11-19 |
Christian Heimes | Removed ReleaseAMD64 and replaced it with platform... |
commit | commitdiff | tree | snapshot |
2007-11-18 |
Christian Heimes | I'm using the xxmodule and xxsubtype to test the msvcco... |
commit | commitdiff | tree | snapshot |
2007-11-18 |
Christian Heimes | Merged revisions 59005-59040 via svnmerge from |
commit | commitdiff | tree | snapshot |
2007-11-18 |
Christian Heimes | Updates to the msi builder and PCbuild9 directory.... |
commit | commitdiff | tree | snapshot |
2007-11-17 |
Bill Janssen | remove now-obsolete test_socket_ssl |
commit | commitdiff | tree | snapshot |
2007-11-17 |
Christian Heimes | Fixed some build issues and updated docs. |
commit | commitdiff | tree | snapshot |
2007-11-17 |
Christian Heimes | The _winreg module returns bytes which must be decoded... |
commit | commitdiff | tree | snapshot |
2007-11-17 |
Christian Heimes | Initial import of new PCbuild9 for VS 2008. It partly... |
commit | commitdiff | tree | snapshot |
2007-11-16 |
Thomas Heller | Use 'del' instead of rmpyc.py to remove the pyc and... |
commit | commitdiff | tree | snapshot |
2007-11-16 |
Christian Heimes | Fixed an error in my last commit. The dll files are... |
commit | commitdiff | tree | snapshot |
2007-11-16 |
Christian Heimes | I finally figured out why _tkinter and _bsddb didn... |
commit | commitdiff | tree | snapshot |
2007-11-16 |
Guido van Rossum | Disable dup() of SSLSocket. I don't think it can be... |
commit | commitdiff | tree | snapshot |
2007-11-16 |
Guido van Rossum | This is roughly socket2.diff from issue 1378, with... |
commit | commitdiff | tree | snapshot |
2007-11-16 |
Amaury Forgeot... | Correct a failing test when test_import is run after... |
commit | commitdiff | tree | snapshot |
2007-11-16 |
Guido van Rossum | Cleanup of tokenizer.c. |
commit | commitdiff | tree | snapshot |
2007-11-16 |
Guido van Rossum | Oops, forgot to test this after the merge. |
commit | commitdiff | tree | snapshot |
2007-11-16 |
Guido van Rossum | Merged revisions 58947-59004 via svnmerge from |
commit | commitdiff | tree | snapshot |
2007-11-16 |
Guido van Rossum | Fix some minor style nits. (I'll leave adding __all__... |
commit | commitdiff | tree | snapshot |
2007-11-15 |
Christian Heimes | Fix for VS 2008 |
commit | commitdiff | tree | snapshot |
2007-11-15 |
Amaury Forgeot... | Correction for issue1134: all source files with a codin... |
commit | commitdiff | tree | snapshot |
2007-11-15 |
Bill Janssen | add the certificate for the Python SVN repository for... |
commit | commitdiff | tree | snapshot |
2007-11-15 |
Bill Janssen | get SSL support to work again |
commit | commitdiff | tree | snapshot |
2007-11-15 |
Amaury Forgeot... | Attempt to manually add _ssl to the PCBuild8 solution... |
commit | commitdiff | tree | snapshot |
2007-11-15 |
Amaury Forgeot... | Found another memory leak in longrangeiter. And redo... |
commit | commitdiff | tree | snapshot |
2007-11-15 |
Thomas Heller | Replace PyObject_Unicode with PyObject_Str everywhere... |
commit | commitdiff | tree | snapshot |
2007-11-15 |
Thomas Heller | Fix two compiler warnings on Win64. |
commit | commitdiff | tree | snapshot |
2007-11-15 |
Christian Heimes | In anticipation of the upcoming ssl patch I've added... |
commit | commitdiff | tree | snapshot |
2007-11-15 |
Guido van Rossum | Patch 1144 by David Binger, fix for parser module.... |
commit | commitdiff | tree | snapshot |
2007-11-15 |
Amaury Forgeot... | Correct a memory leak: the range() object was not prope... |
commit | commitdiff | tree | snapshot |
2007-11-15 |
Thomas Heller | On Win64, linking the python dll currently fails with... |
commit | commitdiff | tree | snapshot |
next |