[issue41601] Performance issue using isspace() in extension module on Windows

2020-08-20 Thread Clemens
Change by Clemens : Added file: https://bugs.python.org/file49413/test.py ___ Python tracker <https://bugs.python.org/issue41601> ___ ___ Python-bugs-list mailin

[issue41601] Performance issue using isspace() in extension module on Windows

2020-08-20 Thread Clemens
Change by Clemens : Added file: https://bugs.python.org/file49412/setup.py ___ Python tracker <https://bugs.python.org/issue41601> ___ ___ Python-bugs-list mailin

[issue41601] Performance issue using isspace() in extension module on Windows

2020-08-20 Thread Clemens
Change by Clemens : Added file: https://bugs.python.org/file49411/isspace_ext.cpp ___ Python tracker <https://bugs.python.org/issue41601> ___ ___ Python-bugs-list mailin

[issue41601] Performance issue using isspace() in extension module on Windows

2020-08-20 Thread Clemens
New submission from Clemens : Function isspace() is significantly slower in extension modules in Python 3.7 or later than in Python 3.6 on Windows 10. Python 3.6: >python test.py Locale: C Set locale: C Locale: C Duration: 0.19718074798583984 Python 3.7: >python test.py Locale: C Set

[issue24942] Remove domain from ipaddress.reverse_pointer property and add method

2015-08-26 Thread Lee Clemens
Changes by Lee Clemens : -- type: -> enhancement ___ Python tracker <http://bugs.python.org/issue24942> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue24942] Remove domain from ipaddress.reverse_pointer property and add method

2015-08-26 Thread Lee Clemens
New submission from Lee Clemens: To lookup info from Cymru (https://www.team-cymru.org/IP-ASN-mapping.html#dns) the domain needs to be changed. Although I have not personally seen any, there may also be cases where dropping the domain altogether would be helpful. So I am wondering if the

[issue21367] multiprocessing.JoinableQueue requires new kwarg

2014-04-27 Thread Lee Clemens
Lee Clemens added the comment: Same issue (ctx keyword) occurs with multiprocessing.queues.SimpleQueue -- ___ Python tracker <http://bugs.python.org/issue21

[issue21367] multiprocessing.JoinableQueue requires new kwarg

2014-04-27 Thread Lee Clemens
New submission from Lee Clemens: Not mentioned (at least not specifically) in the release notes, multiprocessing.JoinableQueue now requires 'ctx' keyword argument: def __init__(self, maxsize=0, *, ctx): This causes an application calling JoinableQueue() to work with 3.3.2 (my s

[issue11691] sqlite3 Cursor.description doesn't set type_code

2011-03-26 Thread William Edward Stuart Clemens
William Edward Stuart Clemens added the comment: The patch for version 3.3 has a one line difference. -- assignee: -> docs@python components: +Documentation, Library (Lib) -None nosy: +docs@python versions: +Python 3.3 Added file: http://bugs.python.org/file21

[issue11691] sqlite3 Cursor.description doesn't set type_code

2011-03-26 Thread William Edward Stuart Clemens
New submission from William Edward Stuart Clemens : The DB API Spec 2.0 (PEP 249) clearly requires that column name and type_code be set as the first two values in Cursor.description the other 5 attributes are optional. The sqlite3 module doesn't set type_code. -- components:

[issue1208304] urllib2's urlopen() method causes a memory leak

2009-09-04 Thread clemens pecinovsky
clemens pecinovsky added the comment: i also ran into the problem of cyclic dependencies. i know if i would call gc.collect() the problem would be solved, but calling gc.collect() takes a long time. the problem is the cyclic dependency with r.recv=r.read i have fixed it localy by wrapping