2007-02-27 |
Brett Cannon | Commit version bump. |
commit | commitdiff | tree | snapshot |
2007-02-27 |
Neal Norwitz | SF patch #1670209, Remove Py_PROTO from socket by Pete... |
commit | commitdiff | tree | snapshot |
2007-02-27 |
Neal Norwitz | SF patch #1669633, add methods for bytes from Pete... |
commit | commitdiff | tree | snapshot |
2007-02-27 |
Neal Norwitz | Fix breakage from removing exceptions module |
commit | commitdiff | tree | snapshot |
2007-02-27 |
Guido van Rossum | Mike Verdone's checkpoint, cleaned up. |
commit | commitdiff | tree | snapshot |
2007-02-27 |
Jeremy Hylton | Add news about nonlocal statement |
commit | commitdiff | tree | snapshot |
2007-02-27 |
Guido van Rossum | Added some comments and docstrings. More is needed. |
commit | commitdiff | tree | snapshot |
2007-02-27 |
Georg Brandl | Remove a few stray tabs from bytesobject.c. |
commit | commitdiff | tree | snapshot |
2007-02-27 |
Georg Brandl | Implement bytes.fromhex(), with tests. |
commit | commitdiff | tree | snapshot |
2007-02-27 |
Neal Norwitz | I assume this was supposed to be Py_ssize_t since there... |
commit | commitdiff | tree | snapshot |
2007-02-27 |
Jeremy Hylton | Provisional implementation of PEP 3104. |
commit | commitdiff | tree | snapshot |
2007-02-27 |
Neal Norwitz | Add some XXX comments for Guido to look at. |
commit | commitdiff | tree | snapshot |
2007-02-27 |
Guido van Rossum | Checkpoint for new I/O library. |
commit | commitdiff | tree | snapshot |
2007-02-27 |
Guido van Rossum | Fix some silly uses of KEYS, ITEMS, VALUES. |
commit | commitdiff | tree | snapshot |
2007-02-27 |
Neal Norwitz | Remove duplicate refs to int from int/long unification... |
commit | commitdiff | tree | snapshot |
2007-02-27 |
Brett Cannon | Remove the ability to slice/index on exceptions per... |
commit | commitdiff | tree | snapshot |
2007-02-27 |
Brett Cannon | Tweak the fix for test_traceback since the fix for... |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Brett Cannon | Fix a broken test in test_traceback where the module... |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Neal Norwitz | Add TODO |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Neal Norwitz | Remove the exceptions builtin module, all the exception... |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Guido van Rossum | Fix another loop over a dict that may change... :-( |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Guido van Rossum | Add -d/--debug option to print traceback without -v... |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Brett Cannon | Make it so TypeError is raised if an instance of an... |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Neal Norwitz | The raw_input name was removed, but the implementation... |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Neal Norwitz | raw_input() really was removed, only input() was resurr... |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Guido van Rossum | Two more patches by Tony Lownds (SF# 1607548). |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Brett Cannon | You can no longer catch non-BaseException objects;... |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Neal Norwitz | Whoops, fix build breakage. There were still a few... |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Neal Norwitz | bool is no longer required, it was only used for the... |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Thomas Wouters | Merged revisions 53912-53951 via svnmerge from |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Guido van Rossum | Add raw_input() back, named input(). Revive the old... |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Guido van Rossum | Add a partial list of limitations, stripping out some... |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Guido van Rossum | Change a test to be more predictable. |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Georg Brandl | Another refleak, this time in PyLong_AsLong. Fixes... |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Guido van Rossum | Use better idiom to sort keys. |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Georg Brandl | Fix a refleak in the MAKE_FUNCTION opcode in ceval.c. |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Georg Brandl | Fix a refleak in PyString_Format. |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Georg Brandl | Fix refleaks in function objects caused by kwdefaults... |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Georg Brandl | Fix leak in the print function. |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Georg Brandl | Fix token.py main code vs. dict views. |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Guido van Rossum | Fix a bizarre error where test_pickletools fails if... |
commit | commitdiff | tree | snapshot |
2007-02-26 |
Guido van Rossum | Don't confound Neil S on b"a"[0] = b"b". |
commit | commitdiff | tree | snapshot |
2007-02-26 |
George Yoshida | put a missing curly brace |
commit | commitdiff | tree | snapshot |
2007-02-25 |
Neal Norwitz | These comments aren't relevant for 3k. They were to... |
commit | commitdiff | tree | snapshot |
2007-02-25 |
Guido van Rossum | Fix merge bug (lost line causing syntax error). |
commit | commitdiff | tree | snapshot |
2007-02-25 |
Guido van Rossum | Use Glyph's trick to ensure that __globals__ is set... |
commit | commitdiff | tree | snapshot |
2007-02-25 |
Guido van Rossum | Add a proper unit test for xreload.py. |
commit | commitdiff | tree | snapshot |
2007-02-25 |
Neal Norwitz | Change all the function attributes from func_* -> __... |
commit | commitdiff | tree | snapshot |
2007-02-25 |
Thomas Wouters | Merged revisions 53875-53911 via svnmerge from |
commit | commitdiff | tree | snapshot |
2007-02-25 |
Guido van Rossum | Add support for static and class methods. |
commit | commitdiff | tree | snapshot |
2007-02-25 |
Neal Norwitz | Fix typo |
commit | commitdiff | tree | snapshot |
2007-02-25 |
Guido van Rossum | First draft of a different solution to the reload(... |
commit | commitdiff | tree | snapshot |
2007-02-24 |
Georg Brandl | Make bytes_repr return a string containing a b"" literal. |
commit | commitdiff | tree | snapshot |
2007-02-23 |
Thomas Wouters | Merged revisions 53859-53874 via svnmerge from |
commit | commitdiff | tree | snapshot |
2007-02-23 |
Thomas Wouters | Prevent regeneration. |
commit | commitdiff | tree | snapshot |
2007-02-23 |
Thomas Wouters | Touch file to regenerate Python-ast.[ch] |
commit | commitdiff | tree | snapshot |
2007-02-23 |
Thomas Wouters | Bytes literal. |
commit | commitdiff | tree | snapshot |
2007-02-23 |
Thomas Wouters | Merged revisions 53623-53858 via svnmerge from |
commit | commitdiff | tree | snapshot |
2007-02-22 |
Guido van Rossum | Fix the last two tests. |
commit | commitdiff | tree | snapshot |
2007-02-22 |
Brett Cannon | Fix test_bsddb3 (along with something bsddb) to work... |
commit | commitdiff | tree | snapshot |
2007-02-22 |
Brett Cannon | Fix obvious problems from switch to dict views. Some... |
commit | commitdiff | tree | snapshot |
2007-02-22 |
Brett Cannon | Remove test_dumbdbm as failing. |
commit | commitdiff | tree | snapshot |
2007-02-22 |
Brett Cannon | Fix dumbdbm and test_dumbdbm to work with dict views... |
commit | commitdiff | tree | snapshot |
2007-02-22 |
Brett Cannon | Fix test_importhooks for dict views. |
commit | commitdiff | tree | snapshot |
2007-02-22 |
Brett Cannon | Fix test_iter after the dict views conversion. |
commit | commitdiff | tree | snapshot |
2007-02-22 |
Brett Cannon | Fix test_iterlen by returning the iterator of dict... |
commit | commitdiff | tree | snapshot |
2007-02-21 |
Brett Cannon | Fix xml.dom.minidom so it works again after the dict... |
commit | commitdiff | tree | snapshot |
2007-02-21 |
Brett Cannon | Fix test_mutants for dict views. |
commit | commitdiff | tree | snapshot |
2007-02-21 |
Brett Cannon | Fix test_os from breakage due to dict views. |
commit | commitdiff | tree | snapshot |
2007-02-21 |
Brett Cannon | Fix plistlib to work with dict views. |
commit | commitdiff | tree | snapshot |
2007-02-15 |
Guido van Rossum | Some more test now pass. |
commit | commitdiff | tree | snapshot |
2007-02-15 |
Guido van Rossum | Fix the damage to UserDict and its tests. |
commit | commitdiff | tree | snapshot |
2007-02-14 |
Guido van Rossum | Fix for test_dict.py, thanks to Eduardo O Padoan. |
commit | commitdiff | tree | snapshot |
2007-02-13 |
Guido van Rossum | Get rid of some old TO TO items. |
commit | commitdiff | tree | snapshot |
2007-02-13 |
Guido van Rossum | List of broken tests at this time. If you fix a test... |
commit | commitdiff | tree | snapshot |
2007-02-12 |
Guido van Rossum | Make dict.keys() and dict.items() comparable to sets... |
commit | commitdiff | tree | snapshot |
2007-02-12 |
Guido van Rossum | Fix unittest. |
commit | commitdiff | tree | snapshot |
2007-02-12 |
Guido van Rossum | Fix another unit test. |
commit | commitdiff | tree | snapshot |
2007-02-12 |
Guido van Rossum | Make test_logging pass. |
commit | commitdiff | tree | snapshot |
2007-02-11 |
Georg Brandl | Checkin the regenerated Python-ast.c and fix test_optparse. |
commit | commitdiff | tree | snapshot |
2007-02-11 |
Guido van Rossum | Nailed test_weakref.py. Pfew, messy! |
commit | commitdiff | tree | snapshot |
2007-02-11 |
Guido van Rossum | Two more trivial fixes. |
commit | commitdiff | tree | snapshot |
2007-02-11 |
Guido van Rossum | Another fix. Partly reverted the tweaks done by the... |
commit | commitdiff | tree | snapshot |
2007-02-11 |
Guido van Rossum | Make test_sax pass. |
commit | commitdiff | tree | snapshot |
2007-02-11 |
Guido van Rossum | With the help of the improved fixer, test_with.py is... |
commit | commitdiff | tree | snapshot |
2007-02-11 |
Guido van Rossum | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues... |
commit | commitdiff | tree | snapshot |
2007-02-10 |
Guido van Rossum | Random change to make this work unchanged when dict... |
commit | commitdiff | tree | snapshot |
2007-02-10 |
Guido van Rossum | Implement __contains__ for dict_keys and dict_items. |
commit | commitdiff | tree | snapshot |
2007-02-10 |
Guido van Rossum | Endow dict views with a proper length method. |
commit | commitdiff | tree | snapshot |
2007-02-10 |
Guido van Rossum | Very preliminary work on dict views. |
commit | commitdiff | tree | snapshot |
2007-02-09 |
Guido van Rossum | News about softspace. |
commit | commitdiff | tree | snapshot |
2007-02-09 |
Guido van Rossum | Fix the remaining doctest failures. |
commit | commitdiff | tree | snapshot |
2007-02-09 |
Guido van Rossum | Ignore *.py[co]. |
commit | commitdiff | tree | snapshot |
2007-02-09 |
Guido van Rossum | Fix test_frozen. |
commit | commitdiff | tree | snapshot |
2007-02-09 |
Guido van Rossum | Kill off softspace completely (except in formatter... |
commit | commitdiff | tree | snapshot |
2007-02-09 |
Guido van Rossum | Redue the failure rate to 13 tests. Bah. |
commit | commitdiff | tree | snapshot |
2007-02-09 |
Guido van Rossum | Fix the roundtripping function. |
commit | commitdiff | tree | snapshot |
2007-02-09 |
Guido van Rossum | Fairly subtle fix for failing tests. |
commit | commitdiff | tree | snapshot |
2007-02-09 |
Guido van Rossum | Trivial fix for test_profile.py. |
commit | commitdiff | tree | snapshot |
2007-02-09 |
Guido van Rossum | Found another difference between old and new print: |
commit | commitdiff | tree | snapshot |
next |