diff options
author | Armin Rigo <arigo@tunes.org> | 2016-12-18 23:28:54 +0100 |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2016-12-18 23:28:54 +0100 |
commit | fab0a96602aebc66db7096f679119d01fb7602c1 (patch) | |
tree | d027b7f610f00101baa718f0ad66ad7bb6d48ec1 /pypy/doc/cpython_differences.rst | |
parent | decompressobj().flush() also accepts sys.maxint now (diff) | |
download | pypy-fab0a96602aebc66db7096f679119d01fb7602c1.tar.gz pypy-fab0a96602aebc66db7096f679119d01fb7602c1.tar.bz2 pypy-fab0a96602aebc66db7096f679119d01fb7602c1.zip |
No clue if it's a good approach, but trying it out: allow cursors to
linger like 2.7.13, but if they cause SQLITE_LOCKED, reset them all and
try again the operation.
Diffstat (limited to 'pypy/doc/cpython_differences.rst')
-rw-r--r-- | pypy/doc/cpython_differences.rst | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/pypy/doc/cpython_differences.rst b/pypy/doc/cpython_differences.rst index 66047f09cc..7ce61c99c5 100644 --- a/pypy/doc/cpython_differences.rst +++ b/pypy/doc/cpython_differences.rst @@ -488,11 +488,6 @@ Miscellaneous the rest is kept. If you return an unexpected string from ``__hex__()`` you get an exception (or a crash before CPython 2.7.13). -* The ``sqlite`` module was updated on 2.7.13 to no longer reset all - cursors when there is a commit. This causes troubles for PyPy (and - potentially for CPython too), and so for now we didn't port this change: - see http://bugs.python.org/issue29006. - .. _`is ignored in PyPy`: http://bugs.python.org/issue14621 .. _`little point`: http://events.ccc.de/congress/2012/Fahrplan/events/5152.en.html .. _`#2072`: https://bitbucket.org/pypy/pypy/issue/2072/ |