~ubuntu-branches/ubuntu/oneiric/python2.6/oneiric

« back to all changes in this revision

Viewing changes to Lib/idlelib/ScriptBinding.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-08-07 20:03:08 UTC
  • mfrom: (10.1.27 sid)
  • Revision ID: james.westby@ubuntu.com-20100807200308-bwsyymoc4donr9a9
Tags: 2.6.6~rc1-1ubuntu1
* Merge with Debian; remaining changes:
  - Regenerate the control file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
import tabnanny
24
24
import tokenize
25
25
import tkMessageBox
26
 
import PyShell
 
26
from idlelib import PyShell
27
27
 
28
 
from configHandler import idleConf
 
28
from idlelib.configHandler import idleConf
29
29
 
30
30
IDENTCHARS = string.ascii_letters + string.digits + "_"
31
31