diff options
author | Guido van Rossum <guido@python.org> | 2006-04-21 15:44:20 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2006-04-21 15:44:20 (GMT) |
commit | 6da48561cb7844526164d3a656c6d16afe904e3d (patch) | |
tree | 76b85ad3717da33ef7c6246807204b902a3ac920 /Lib/plat-mac/lib-scriptpackages/Terminal/Text_Suite.py | |
parent | c350d1a1106658d968badf2c35f5b10ddaa59a3e (diff) | |
download | cpython-6da48561cb7844526164d3a656c6d16afe904e3d.zip cpython-6da48561cb7844526164d3a656c6d16afe904e3d.tar.gz cpython-6da48561cb7844526164d3a656c6d16afe904e3d.tar.bz2 |
Fix test_scriptpackage with pure will power.
I really don't know why I bother; these are all generated files.
But I don't recall how to regenerate them nor how to fix the generator.
The hardest part was fixing two mutual recursive imports;
somehow changing "import foo" into "from . import foo" where
foo and bar import each other AND both are imported from __init__.py
caused things to break. Bah.
Diffstat (limited to 'Lib/plat-mac/lib-scriptpackages/Terminal/Text_Suite.py')
-rw-r--r-- | Lib/plat-mac/lib-scriptpackages/Terminal/Text_Suite.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/plat-mac/lib-scriptpackages/Terminal/Text_Suite.py b/Lib/plat-mac/lib-scriptpackages/Terminal/Text_Suite.py index 62f4744..1303208 100644 --- a/Lib/plat-mac/lib-scriptpackages/Terminal/Text_Suite.py +++ b/Lib/plat-mac/lib-scriptpackages/Terminal/Text_Suite.py @@ -101,7 +101,7 @@ attachment._privelemdict = { 'paragraph' : paragraph, 'word' : word, } -import Standard_Suite +from . import Standard_Suite attribute_run._superclassnames = ['item'] attribute_run._privpropdict = { '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_, |