[issue33383] Crash in the get() method a single argument in dbm.ndbm

2018-05-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for reminder Zackery. I forgot about that issue! -- ___ Python tracker ___

[issue33383] Crash in the get() method a single argument in dbm.ndbm

2018-05-20 Thread Zackery Spytz
Zackery Spytz added the comment: There was already an open issue for this (#31868). -- nosy: +ZackerySpytz ___ Python tracker ___

[issue33383] Crash in the get() method a single argument in dbm.ndbm

2018-04-29 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue33383] Crash in the get() method a single argument in dbm.ndbm

2018-04-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 1b27ec6e0b40f81bf276eefa6b5bdb773b2a8890 by Serhiy Storchaka in branch '3.6': [3.6] bpo-33383: Fix crash in get() of the dbm.ndbm database object. (GH-6630). (GH-6633)

[issue33383] Crash in the get() method a single argument in dbm.ndbm

2018-04-29 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +6329 ___ Python tracker ___ ___

[issue33383] Crash in the get() method a single argument in dbm.ndbm

2018-04-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset ee95feb69d937149bef3d245e87df1aef412b7fc by Serhiy Storchaka (Miss Islington (bot)) in branch '3.7': [3.7] bpo-33383: Fix crash in get() of the dbm.ndbm database object. (GH-6630) (GH-6631)

[issue33383] Crash in the get() method a single argument in dbm.ndbm

2018-04-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 2e38cc39330bd7f3003652869b644110a97a78d8 by Serhiy Storchaka in branch 'master': bpo-33383: Fix crash in get() of the dbm.ndbm database object. (#6630)

[issue33383] Crash in the get() method a single argument in dbm.ndbm

2018-04-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +6327 ___ Python tracker ___

[issue33383] Crash in the get() method a single argument in dbm.ndbm

2018-04-29 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +6326 stage: -> patch review ___ Python tracker ___

[issue33383] Crash in the get() method a single argument in dbm.ndbm

2018-04-29 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : Calling the get() method of the dbm.ndbm database object with only single argument causes a crash because the default value is set to NULL. The regression was introduce in 3.5. The proposed patch fixes the crash and add tests