forked from tornadoweb/tornado
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a utility function to import an object by name.
- Loading branch information
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
"""Miscellaneous utility functions.""" | ||
|
||
def import_object(name): | ||
"""Imports an object by name. | ||
import_object('x.y.z') is equivalent to 'from x.y import z'. | ||
>>> import tornado.escape | ||
>>> import_object('tornado.escape') is tornado.escape | ||
True | ||
>>> import_object('tornado.escape.utf8') is tornado.escape.utf8 | ||
True | ||
""" | ||
parts = name.split('.') | ||
obj = __import__('.'.join(parts[:-1]), None, None, [parts[-1]], 0) | ||
return getattr(obj, parts[-1]) | ||
|
||
def doctests(): | ||
import doctest | ||
return doctest.DocTestSuite() |