[issue47072] Database corruption with the shelve module

2022-03-27 Thread qiu
Change by qiu <1425166...@qq.com>: -- components: +Demos and Tools -FreeBSD, Library (Lib) ___ Python tracker <https://bugs.python.org/issue47072> ___ ___

[issue47137] MemoryError

2022-03-27 Thread qiu
New submission from qiu <1425166...@qq.com>: Traceback (most recent call last): File "python_AFL.py", line 110, in runFuzzer runtime = runApplication(input_path, mode) File "python_AFL.py", line 75, in runApplication exec(f.read(), {'buff': inp

[issue47137] MemoryError

2022-03-27 Thread qiu
qiu <1425166...@qq.com> added the comment: 9 -- ___ Python tracker <https://bugs.python.org/issue47137> ___ ___ Python-bugs-list mailing list Unsubsc

[issue47137] MemoryError

2022-03-27 Thread qiu
qiu <1425166...@qq.com> added the comment: hello, Did you get the E-mail about one random input I sent you? one random in

[issue47137] MemoryError

2022-03-28 Thread qiu
qiu <1425166...@qq.com> added the comment: y -- ___ Python tracker <https://bugs.python.org/issue47137> ___ ___ Python-bugs-list mailing list Unsubsc

[issue18714] Add tests for pdb.find_function

2013-08-12 Thread Kevin Jing Qiu
New submission from Kevin Jing Qiu: PyConCA 2013 sprint task -- components: Tests messages: 194986 nosy: Kevin.Jing.Qiu priority: normal severity: normal status: open title: Add tests for pdb.find_function type: enhancement versions: Python 3.5

[issue18714] Add tests for pdb.find_function

2013-08-12 Thread Kevin Jing Qiu
Changes by Kevin Jing Qiu : -- keywords: +patch Added file: http://bugs.python.org/file31251/mywork.patch ___ Python tracker <http://bugs.python.org/issue18

[issue25549] call sum on list of timedelta throws TypeError

2015-11-03 Thread Kevin Jing Qiu
New submission from Kevin Jing Qiu: Calling sum() on a list of timedelta objects results in TypeError: unsupported operand type(s) for +: 'int' and 'datetime.timedelta' Here's a script that illustrates this behaviour: (also attached) import datetime