This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author louielu
Recipients BreamoreBoy, eric.snow, georg.brandl, josh.r, louielu, xdegaye
Date 2017-06-26.10:59:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1498474747.23.0.823966008349.issue20703@psf.upfronthosting.co.za>
In-reply-to
Content
The lazy import cause by two modules, readline and _bootlocale.

readline: in __init__

   try:
       import readline
       readline.set_completer_delims(' \t\n`@#$%^&*()=+[{]}\\|;:\'",<>?')

_bootlocale: in __init__

    with open(os.path.join(envHome, '.pdbrc')) as rcFile:
    with open('.pdbrc') as rcFile

Easiest way to eliminated it to move import readline and import _bootlocale to the top of the file.
History
Date User Action Args
2017-06-26 10:59:07louielusetrecipients: + louielu, georg.brandl, BreamoreBoy, xdegaye, eric.snow, josh.r
2017-06-26 10:59:07louielusetmessageid: <1498474747.23.0.823966008349.issue20703@psf.upfronthosting.co.za>
2017-06-26 10:59:07louielulinkissue20703 messages
2017-06-26 10:59:07louielucreate