We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e473667 commit ed440feCopy full SHA for ed440fe
README.markdown
@@ -1,6 +1,6 @@
1
[Documentation](http://docs.pythontoolbox.org)
2
3
-[Installation](http://docs.pythontoolbox.org/intro/installation/index.html)
+[Installation](http://docs.pythontoolbox.org/installation.html)
4
5
6
# What is the Python Toolbox? #
test_python_toolbox/test_path_tools/test_get_root_path_of_module.py
@@ -3,7 +3,10 @@
def test():
''' '''
import email.charset
- import re
7
assert get_root_path_of_module(email) == \
8
- get_root_path_of_module(email.charset) == \
9
- get_root_path_of_module(re)
+ get_root_path_of_module(email.charset)
+
+ import python_toolbox.path_tools
10
+ assert get_root_path_of_module(python_toolbox) == \
11
+ get_root_path_of_module(python_toolbox.path_tools)
12
0 commit comments