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

« back to all changes in this revision

Viewing changes to Lib/idlelib/ColorDelegator.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:
3
3
import keyword
4
4
import __builtin__
5
5
from Tkinter import *
6
 
from Delegator import Delegator
7
 
from configHandler import idleConf
 
6
from idlelib.Delegator import Delegator
 
7
from idlelib.configHandler import idleConf
8
8
 
9
9
DEBUG = False
10
10
 
248
248
            self.tag_remove(tag, "1.0", "end")
249
249
 
250
250
def main():
251
 
    from Percolator import Percolator
 
251
    from idlelib.Percolator import Percolator
252
252
    root = Tk()
253
253
    root.wm_protocol("WM_DELETE_WINDOW", root.quit)
254
254
    text = Text(background="white")