Created
August 14, 2019 15:21
-
-
Save Hanrui-Wang/37c1f60fbf2cd6f40d6bee83b2dd6dce to your computer and use it in GitHub Desktop.
About overload an existing standard package
This file contains hidden or 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
$ tree foo | |
foo | |
├── string.py | |
└── test.py | |
0 directories, 2 files | |
$ cat foo/string.py | |
ascii_lowercase='this is personal module' | |
$ cat foo/test.py | |
import string | |
print string.ascii_lowercase |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment