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/Containers_and_folders.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/Containers_and_folders.py')
| -rw-r--r-- | Lib/plat-mac/lib-scriptpackages/Finder/Containers_and_folders.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/plat-mac/lib-scriptpackages/Finder/Containers_and_folders.py b/Lib/plat-mac/lib-scriptpackages/Finder/Containers_and_folders.py index e495ef4..474ac6f 100644 --- a/Lib/plat-mac/lib-scriptpackages/Finder/Containers_and_folders.py +++ b/Lib/plat-mac/lib-scriptpackages/Finder/Containers_and_folders.py @@ -148,8 +148,8 @@ class _Prop_warns_before_emptying(aetools.NProperty): # element 'inlf' as ['indx', 'name'] # element 'pack' as ['indx', 'name'] disk._superclassnames = ['container'] -import Files -import Finder_items +from . import Files +from . import Finder_items disk._privpropdict = { '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_, 'capacity' : _Prop_capacity, |
