| Commit message (Expand) | Author | Age | Files | Lines |
* | Clear reset flag on cursor objects after executing a new sql statement. | Daniel Roberts | 2011-03-05 | 1 | -0/+3 |
* | Fixed CheckCursorRegistration test | Daniel Roberts | 2011-03-05 | 1 | -0/+24 |
* | Fix the _csv module (I should have run the tests...) | Amaury Forgeot d'Arc | 2011-03-02 | 1 | -4/+12 |
* | More optimizations to csv.Reader | Amaury Forgeot d'Arc | 2011-03-01 | 1 | -47/+69 |
* | Some optimisations to csv.Reader: | Amaury Forgeot d'Arc | 2011-03-01 | 1 | -9/+8 |
* | Changes CSV Reader and Writer to be newstyle classes, worth a couple percent ... | Alex Gaynor | 2011-03-01 | 1 | -3/+2 |
* | move find_ids* functions outside of the Log class: they now take a disassembl... | Antonio Cuni | 2011-02-18 | 1 | -2/+3 |
* | kill relative imports and use absolute ones instead; the relative imports wer... | Antonio Cuni | 2011-02-17 | 21 | -25/+25 |
* | Fix. Change the tests from xfail() to check_impl_detail() | Armin Rigo | 2011-02-16 | 1 | -0/+2 |
* | Add a case where the list of bases is empty (hence "object"). | Armin Rigo | 2011-02-16 | 1 | -0/+1 |
* | Fix an ImportError. | Alex Gaynor | 2011-02-15 | 1 | -0/+1 |
* | Fix for FAIL: test_run_module_bug1764407 (test.test_cmd_line.CmdLineTest) | Vincent Legoll | 2011-02-15 | 1 | -0/+5 |
* | Fixup sqlite3.Connection.executescript | Alex Gaynor | 2011-02-13 | 1 | -14/+24 |
* | Merge heads | Amaury Forgeot d'Arc | 2011-02-10 | 1 | -2/+3 |
|\ |
|
| * | sqlite: cut converter names at '(' character | Amaury Forgeot d'Arc | 2011-02-09 | 1 | -0/+2 |
| * | sqlite: It seems better to exit the query earlier when a callback cannot be run. | Amaury Forgeot d'Arc | 2011-02-09 | 1 | -2/+1 |
* | | sqlite: Add iterdump() | Amaury Forgeot d'Arc | 2011-02-10 | 1 | -0/+4 |
|/ |
|
* | SELECT statements should execute the query in execute(), and not wait for the... | Amaury Forgeot d'Arc | 2011-02-09 | 1 | -23/+46 |
* | sqlite: implement set_authorizer | Amaury Forgeot d'Arc | 2011-02-09 | 1 | -1/+22 |
* | sqlite: Fix the "adapters" protocol. | Amaury Forgeot d'Arc | 2011-02-09 | 1 | -2/+2 |
* | sqlite: Fix the "check_closed()" tests | Amaury Forgeot d'Arc | 2011-02-09 | 1 | -1/+11 |
* | Implement sqlite progress handlers | Amaury Forgeot d'Arc | 2011-02-09 | 1 | -1/+29 |
* | Implement collation functions in sqlite | Amaury Forgeot d'Arc | 2011-02-09 | 1 | -1/+32 |
* | These callbacks return void, no need to return 0 | Amaury Forgeot d'Arc | 2011-02-09 | 1 | -3/+0 |
* | Don't print a TypeError when a "void f()" callback function returns None. | Amaury Forgeot d'Arc | 2011-02-09 | 1 | -0/+2 |
* | Implement aggregate functions in sqlite | Amaury Forgeot d'Arc | 2011-02-09 | 1 | -5/+85 |
* | Fix a few failures in test_sqlite | Amaury Forgeot d'Arc | 2011-02-09 | 1 | -3/+20 |
* | Fix some failures in test_sqlite | Amaury Forgeot d'Arc | 2011-02-09 | 1 | -9/+13 |
* | sqlite3 is now part of Python, there is little interest | Amaury Forgeot d'Arc | 2011-02-09 | 1 | -0/+968 |
* | Add slightly more comprehensible version of dis.py | Maciej Fijalkowski | 2011-01-30 | 1 | -0/+297 |
* | Merge heads | Amaury Forgeot d'Arc | 2011-01-26 | 1 | -2/+1 |
|\ |
|
| * | Turn functool.partial into a new-style class. | Amaury Forgeot d'Arc | 2011-01-26 | 1 | -2/+1 |
* | | hash.update() accepts arrays and other objects with the buffer interface. | Amaury Forgeot d'Arc | 2011-01-26 | 2 | -6/+22 |
|/ |
|
* | (fijal, arigo) | Armin Rigo | 2011-01-20 | 1 | -1/+4 |
* | (fijal, arigo) | Armin Rigo | 2011-01-20 | 1 | -4/+9 |
* | Remove lib_pypy/cmath.py, which is now out-of-date. | Armin Rigo | 2011-01-20 | 1 | -288/+0 |
* | remove libpythondir from autopath; it's not used anywhere | Benjamin Peterson | 2011-01-17 | 1 | -3/+0 |
* | Maybe we should print a ResourceWarning, but at least don't leak too many | Amaury Forgeot d'Arc | 2011-01-17 | 1 | -0/+4 |
* | Disable this check, it breaks ctypes.cast() | Amaury Forgeot d'Arc | 2011-01-17 | 1 | -1/+3 |
* | (lac, arigo) | Armin Rigo | 2011-01-16 | 1 | -162/+0 |
* | Before calling a Python callback, from python, check that the arguments are c... | Amaury Forgeot d'Arc | 2011-01-14 | 1 | -0/+3 |
* | ctypes: For some reason a callback is not allowed to return a Pointer. | Amaury Forgeot d'Arc | 2011-01-14 | 1 | -1/+2 |
* | ctypes: implement the new "use_errno" protocol. | Amaury Forgeot d'Arc | 2011-01-14 | 3 | -4/+38 |
* | When a callback function is not given enough arguments, an exception is raised. | Amaury Forgeot d'Arc | 2011-01-14 | 1 | -1/+18 |
* | Avoid to pass the bitfield for non-int types, | Amaury Forgeot d'Arc | 2011-01-14 | 1 | -3/+6 |
* | typo | Amaury Forgeot d'Arc | 2011-01-14 | 1 | -1/+1 |
* | ctypes: Add support for Structure._pack_ | Amaury Forgeot d'Arc | 2011-01-14 | 1 | -1/+2 |
* | pypy names extension modules differently: _testcapi.pypy-14.so | Amaury Forgeot d'Arc | 2011-01-13 | 1 | -2/+3 |
* | Let cmath functions fail with a TypeError for invalid types | Amaury Forgeot d'Arc | 2011-01-04 | 1 | -1/+1 |
* | Hack and provide a (slow!) version of sys.getrefcount() based on gc.get_refer... | Amaury Forgeot d'Arc | 2011-01-03 | 1 | -1/+2 |