Deprecate NotFoundError, because it wasn't used anymore.

This commit is contained in:
Dave Halter
2015-01-08 18:17:37 +01:00
parent 8ec8a74a3f
commit 301b4ca649
2 changed files with 30 additions and 38 deletions

View File

@@ -99,7 +99,7 @@ from import_tree.rename1 import abc
#< (0, 32),
from import_tree.rename1 import not_existing
# Shouldn't work (would raise a NotFoundError, because there's no name.)
# Shouldn't raise an error or do anything weird.
from not_existing import *
# -----------------