Created
June 22, 2015 00:28
-
-
Save lichengwu/356b0ed48d64e57f8489 to your computer and use it in GitHub Desktop.
轻量级Python对象,更少内存占用
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
LightObject = namedtuple('LightObject', ['shortname', 'otherprop']) | |
n = LightObject(shortname='something', otherprop='something else') | |
n.shortname # something |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment