[Python-checkins] [python/cpython] 32fd87: bpo-15786: Fix IDLE autocomplete return problem. (...

GitHub noreply at github.com
Wed Jun 14 15:43:17 EDT 2017


  Branch: refs/heads/master
  Home:   https://github.com/python/cpython
  Commit: 32fd874afe55e396e3c9a5af35e7bb3d8e0b8f02
      https://github.com/python/cpython/commit/32fd874afe55e396e3c9a5af35e7bb3d8e0b8f02
  Author: terryjreedy <tjreedy at udel.edu>
  Date:   2017-06-14 (Wed, 14 Jun 2017)

  Changed paths:
    M Lib/idlelib/autocomplete_w.py

  Log Message:
  -----------
  bpo-15786: Fix IDLE autocomplete return problem. (#2198)

Before, <return> would not, for instance, complete 're.c' to 're.compile' even with 'compile' highlighted.  Now it does.  Before, <return> was inserted into text, which in Shell meant compile() and possibly execute.  Now cursor is left after completion.




More information about the Python-checkins mailing list