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/Finder/Finder_Basics.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/Finder/Finder_Basics.py')
| -rw-r--r-- | Lib/plat-mac/lib-scriptpackages/Finder/Finder_Basics.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/plat-mac/lib-scriptpackages/Finder/Finder_Basics.py b/Lib/plat-mac/lib-scriptpackages/Finder/Finder_Basics.py index c0a7b20..831e101 100644 --- a/Lib/plat-mac/lib-scriptpackages/Finder/Finder_Basics.py +++ b/Lib/plat-mac/lib-scriptpackages/Finder/Finder_Basics.py @@ -141,10 +141,10 @@ visible = _Prop_visible() # element 'lwnd' as ['indx', 'name'] # element 'pack' as ['indx', 'name'] application._superclassnames = [] -import Files -import Window_classes -import Containers_and_folders -import Finder_items +from . import Files +from . import Window_classes +from . import Containers_and_folders +from . import Finder_items application._privpropdict = { 'Finder_preferences' : _Prop_Finder_preferences, 'clipboard' : _Prop_clipboard, |
