aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Clear reset flag on cursor objects after executing a new sql statement.Daniel Roberts2011-03-051-0/+3
* Fixed CheckCursorRegistration testDaniel Roberts2011-03-051-0/+24
* Fix the _csv module (I should have run the tests...)Amaury Forgeot d'Arc2011-03-021-4/+12
* More optimizations to csv.ReaderAmaury Forgeot d'Arc2011-03-011-47/+69
* Some optimisations to csv.Reader:Amaury Forgeot d'Arc2011-03-011-9/+8
* Changes CSV Reader and Writer to be newstyle classes, worth a couple percent ...Alex Gaynor2011-03-011-3/+2
* move find_ids* functions outside of the Log class: they now take a disassembl...Antonio Cuni2011-02-181-2/+3
* kill relative imports and use absolute ones instead; the relative imports wer...Antonio Cuni2011-02-1721-25/+25
* Fix. Change the tests from xfail() to check_impl_detail()Armin Rigo2011-02-161-0/+2
* Add a case where the list of bases is empty (hence "object").Armin Rigo2011-02-161-0/+1
* Fix an ImportError.Alex Gaynor2011-02-151-0/+1
* Fix for FAIL: test_run_module_bug1764407 (test.test_cmd_line.CmdLineTest)Vincent Legoll2011-02-151-0/+5
* Fixup sqlite3.Connection.executescriptAlex Gaynor2011-02-131-14/+24
* Merge headsAmaury Forgeot d'Arc2011-02-101-2/+3
|\
| * sqlite: cut converter names at '(' characterAmaury Forgeot d'Arc2011-02-091-0/+2
| * sqlite: It seems better to exit the query earlier when a callback cannot be run.Amaury Forgeot d'Arc2011-02-091-2/+1
* | sqlite: Add iterdump()Amaury Forgeot d'Arc2011-02-101-0/+4
|/
* SELECT statements should execute the query in execute(), and not wait for the...Amaury Forgeot d'Arc2011-02-091-23/+46
* sqlite: implement set_authorizerAmaury Forgeot d'Arc2011-02-091-1/+22
* sqlite: Fix the "adapters" protocol.Amaury Forgeot d'Arc2011-02-091-2/+2
* sqlite: Fix the "check_closed()" testsAmaury Forgeot d'Arc2011-02-091-1/+11
* Implement sqlite progress handlersAmaury Forgeot d'Arc2011-02-091-1/+29
* Implement collation functions in sqliteAmaury Forgeot d'Arc2011-02-091-1/+32
* These callbacks return void, no need to return 0Amaury Forgeot d'Arc2011-02-091-3/+0
* Don't print a TypeError when a "void f()" callback function returns None.Amaury Forgeot d'Arc2011-02-091-0/+2
* Implement aggregate functions in sqliteAmaury Forgeot d'Arc2011-02-091-5/+85
* Fix a few failures in test_sqliteAmaury Forgeot d'Arc2011-02-091-3/+20
* Fix some failures in test_sqliteAmaury Forgeot d'Arc2011-02-091-9/+13
* sqlite3 is now part of Python, there is little interestAmaury Forgeot d'Arc2011-02-091-0/+968
* Add slightly more comprehensible version of dis.pyMaciej Fijalkowski2011-01-301-0/+297
* Merge headsAmaury Forgeot d'Arc2011-01-261-2/+1
|\
| * Turn functool.partial into a new-style class.Amaury Forgeot d'Arc2011-01-261-2/+1
* | hash.update() accepts arrays and other objects with the buffer interface.Amaury Forgeot d'Arc2011-01-262-6/+22
|/
* (fijal, arigo)Armin Rigo2011-01-201-1/+4
* (fijal, arigo)Armin Rigo2011-01-201-4/+9
* Remove lib_pypy/cmath.py, which is now out-of-date.Armin Rigo2011-01-201-288/+0
* remove libpythondir from autopath; it's not used anywhereBenjamin Peterson2011-01-171-3/+0
* Maybe we should print a ResourceWarning, but at least don't leak too manyAmaury Forgeot d'Arc2011-01-171-0/+4
* Disable this check, it breaks ctypes.cast()Amaury Forgeot d'Arc2011-01-171-1/+3
* (lac, arigo)Armin Rigo2011-01-161-162/+0
* Before calling a Python callback, from python, check that the arguments are c...Amaury Forgeot d'Arc2011-01-141-0/+3
* ctypes: For some reason a callback is not allowed to return a Pointer.Amaury Forgeot d'Arc2011-01-141-1/+2
* ctypes: implement the new "use_errno" protocol.Amaury Forgeot d'Arc2011-01-143-4/+38
* When a callback function is not given enough arguments, an exception is raised.Amaury Forgeot d'Arc2011-01-141-1/+18
* Avoid to pass the bitfield for non-int types,Amaury Forgeot d'Arc2011-01-141-3/+6
* typoAmaury Forgeot d'Arc2011-01-141-1/+1
* ctypes: Add support for Structure._pack_Amaury Forgeot d'Arc2011-01-141-1/+2
* pypy names extension modules differently: _testcapi.pypy-14.soAmaury Forgeot d'Arc2011-01-131-2/+3
* Let cmath functions fail with a TypeError for invalid typesAmaury Forgeot d'Arc2011-01-041-1/+1
* Hack and provide a (slow!) version of sys.getrefcount() based on gc.get_refer...Amaury Forgeot d'Arc2011-01-031-1/+2