[Python-Dev] Summary of Python tracker Issues
ACTIVITY SUMMARY (2016-02-12 - 2016-02-19) Python tracker at http://bugs.python.org/ To view or respond to any of the issues listed below, click on the issue. Do NOT respond to this message. Issues counts and deltas: open5432 (+15) closed 32718 (+27) total 38150 (+42) Open issues with patches: 2375 Issues opened (35) == #25939: _ssl.enum_certificates() fails with ERROR_ACCESS_DENIED if pyt http://bugs.python.org/issue25939 reopened by benjamin.peterson #26351: Occasionally check for Ctrl-C in long-running operations like http://bugs.python.org/issue26351 opened by steven.daprano #26352: getpass incorrectly displays password prompt on stderr on fall http://bugs.python.org/issue26352 opened by Matt Hooks #26353: IDLE: Saving Shell should not add \n http://bugs.python.org/issue26353 opened by terry.reedy #26355: Emit major version based canonical URLs for docs http://bugs.python.org/issue26355 opened by ncoghlan #26357: asyncio.wait loses coroutine return value http://bugs.python.org/issue26357 opened by André Caron #26358: mmap.mmap.__iter__ is broken (yields bytes instead of ints) http://bugs.python.org/issue26358 opened by ztane #26359: CPython build options for out-of-the box performance http://bugs.python.org/issue26359 opened by alecsandru.patrascu #26360: Deadlock in thread.join on Python 2.7/Mac OS X 10.9 http://bugs.python.org/issue26360 opened by mark.dickinson #26362: Approved API for creating a temporary file path http://bugs.python.org/issue26362 opened by bignose #26363: __builtins__ propagation is misleading described in exec and e http://bugs.python.org/issue26363 opened by xcombelle #26366: Use â.. versionaddedâ over â.. versionchangedâ where a http://bugs.python.org/issue26366 opened by Tony R. #26367: importlib.__import__ does not fail for invalid relative import http://bugs.python.org/issue26367 opened by mjacob #26369: doc for unicode.decode and str.encode is unnecessarily confusi http://bugs.python.org/issue26369 opened by benspiller #26370: shelve filename inconsistent between platforms http://bugs.python.org/issue26370 opened by Dima.Tisnek #26372: Popen.communicate not ignoring BrokenPipeError http://bugs.python.org/issue26372 opened by memeplex #26373: asyncio: add support for async context manager on streams? http://bugs.python.org/issue26373 opened by haypo #26374: concurrent_futures Executor.map semantics better specified in http://bugs.python.org/issue26374 opened by F.D. Sacerdoti #26375: New versions of Python hangs on imaplib.IMAP4_SSL() http://bugs.python.org/issue26375 opened by mniklas #26376: Tkinter root window won't close if packed. http://bugs.python.org/issue26376 opened by Sam Yeager #26377: Tkinter dialogs will not close if root window not packed. http://bugs.python.org/issue26377 opened by Sam Yeager #26379: zlib decompress as_bytearray flag http://bugs.python.org/issue26379 opened by ll #26380: Add an http method enum http://bugs.python.org/issue26380 opened by demian.brecht #26381: Add 'geo' URI scheme (RFC 5870) to urllib.parse.uses_params http://bugs.python.org/issue26381 opened by Serhiy Int #26382: List object memory allocator http://bugs.python.org/issue26382 opened by catalin.manciu #26383: benchmarks (perf.py): number of decimal places in csv output http://bugs.python.org/issue26383 opened by florin.papa #26384: UnboundLocalError in socket._sendfile_use_sendfile http://bugs.python.org/issue26384 opened by berker.peksag #26385: the call of tempfile.NamedTemporaryFile fails and leaves a fil http://bugs.python.org/issue26385 opened by Eugene Viktorov #26386: tkinter - Treeview - .selection_add and selection_toggle http://bugs.python.org/issue26386 opened by gbarnabic #26387: Race condition in sqlite module http://bugs.python.org/issue26387 opened by scorp #26388: Disabling changing sys.argv[0] with runpy.run_module(...alter_ http://bugs.python.org/issue26388 opened by Mike Kaplinskiy #26389: Expand traceback module API to accept just an exception as an http://bugs.python.org/issue26389 opened by brett.cannon #26390: hashlib's pbkdf2_hmac documentation "rounds" does not match so http://bugs.python.org/issue26390 opened by dbakker #26391: Specialized sub-classes of Generic never call __init__ http://bugs.python.org/issue26391 opened by Kai Wohlfahrt #26392: socketserver.BaseServer.close_server should stop serve_forever http://bugs.python.org/issue26392 opened by palaviv Most recent 15 issues with no replies (15) == #26392: socketserver.BaseServer.close_server should stop serve_forever http://bugs.python.org/issue26392 #26391: Specialized sub-classes of Generic never call __init__ http://bugs.python.org/issue26391 #26389: Expand traceback module API to accept just an exception as an http://bugs.python.org/issue26389 #26386: tkinter - Treeview - .selection_add and selection_toggle http://bugs.py
Re: [Python-Dev] Regular expression bytecode
This might be tricky for alternative Python implementations which might compile regular expressions into something rather different. ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
Re: [Python-Dev] Regular expression bytecode
On Fri, Feb 19, 2016 at 2:30 PM, Simon Cross wrote: > This might be tricky for alternative Python implementations which > might compile regular expressions into something rather different. As has been discussed on python-ideas, it would be explicitly treated as a CPython implementation detail, so that wouldn't be an issue. That said, I've decided to shelve the idea for the time being, at least, as I've had some things come up unexpectedly, and I no longer have time to pursue this. ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com