[issue13947] gdbm reorganize() leaves hanging file descriptor

2019-04-08 Thread sds
sds added the comment: Upstream claims that this is fixed by http://git.gnu.org.ua/cgit/gdbm.git/commit/?id=a0d6c1a8 -- ___ Python tracker ___

[issue13947] gdbm reorganize() leaves hanging file descriptor

2019-04-03 Thread sds
Change by sds : -- versions: +Python 3.6 -Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13947] gdbm reorganize() leaves hanging file descriptor

2019-04-03 Thread sds
Change by sds : -- components: +Library (Lib) versions: +Python 3.7 -Python 2.7, Python 3.2 ___ Python tracker ___ ___

[issue13947] gdbm reorganize() leaves hanging file descriptor

2019-04-03 Thread sds
Change by sds : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13947] gdbm reorganize() leaves hanging file descriptor

2019-04-03 Thread sds
sds added the comment: I observe the same behavior on Linux 4.18.0-17-generic #18-Ubuntu with Python 3.6.7 (default, Oct 22 2018, 11:32:17) [GCC 8.2.0]. gdbm 1.14.1-6: after db = dbm.gnu.open("asdf","n") db["a"] = "124" db.reorganize() db.close() I see $ lsof ~/asdf COMMAND PID USER FD

[issue13947] gdbm reorganize() leaves hanging file descriptor

2012-02-10 Thread Jesús Cea Avión
Jesús Cea Avión j...@jcea.es added the comment: I can't reproduce. Sorry. Reading the GDBM documentation, all filedescriptors management seem to be inside gdbm, not Python. Anyway, if I can't reproduce, I can not diagnose neither patch. Sorry. --

[issue13947] gdbm reorganize() leaves hanging file descriptor

2012-02-05 Thread Jack Miller
New submission from Jack Miller j...@codezen.org: I've discovered that using either 2.7.2 or 3.2.2 (from Arch) reorganizing gdbm databases leave hanging file descriptors that will cause EAGAIN errors trying to reopen it until the process is killed. For example: Python 2.7.2 (default, Jan 31

[issue13947] gdbm reorganize() leaves hanging file descriptor

2012-02-05 Thread Jesús Cea Avión
Jesús Cea Avión j...@jcea.es added the comment: I can not reproduce the issue with GDBM 1.9.1, neither GDBM 1.8.3, neither GDBM 1.10, under Solaris. I don't see the file descriptor leak either. According to http://sunsite.ualberta.ca/Documentation/Gnu/gdbm-1.8.0/html_node/gdbm_10.html, all

[issue13947] gdbm reorganize() leaves hanging file descriptor

2012-02-05 Thread Jesús Cea Avión
Jesús Cea Avión j...@jcea.es added the comment: Can't reproduce either in Ubuntu 10.04, 64 bits, with GDBM 1.8.3. Closing bug. Reporter, please indicate your GDBM version. Can you possibly upgrade it?. -- stage: - committed/rejected ___ Python

[issue13947] gdbm reorganize() leaves hanging file descriptor

2012-02-05 Thread Jack Miller
Jack Miller j...@codezen.org added the comment: I am using gdbm 1.10, the latest available. pacman says: core/gdbm 1.10-1 [installed] GNU database library Which also contains the file (libgdbm.so.4) that Python's gdbm.so is linked to (just in case there was some version trickery going on