15 This is a modified version to make the original tabnanny better suitable |
15 This is a modified version to make the original tabnanny better suitable |
16 for being called from within the eric6 IDE. |
16 for being called from within the eric6 IDE. |
17 |
17 |
18 @exception ValueError The tokenize module is too old. |
18 @exception ValueError The tokenize module is too old. |
19 """ |
19 """ |
20 |
|
21 from __future__ import unicode_literals |
|
22 |
20 |
23 # Released to the public domain, by Tim Peters, 15 April 1998. |
21 # Released to the public domain, by Tim Peters, 15 April 1998. |
24 |
22 |
25 # XXX Note: this is now a standard library module. |
23 # XXX Note: this is now a standard library module. |
26 # XXX The API needs to undergo changes however; the current code is too |
24 # XXX The API needs to undergo changes however; the current code is too |