diff options
author | Guido van Rossum <guido@python.org> | 1997-08-25 15:37:59 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-25 15:37:59 (GMT) |
commit | 27e4aa316875b1e5ad7fd85f93707ddf4fdba063 (patch) | |
tree | 17c0e25dbcec051797235ca89bc7e0f5c3e486ee /Demo/metaclasses/Enum.py | |
parent | bff110f3f10027cf03457556e42af2d3d87d5e7f (diff) | |
download | cpython-27e4aa316875b1e5ad7fd85f93707ddf4fdba063.zip cpython-27e4aa316875b1e5ad7fd85f93707ddf4fdba063.tar.gz cpython-27e4aa316875b1e5ad7fd85f93707ddf4fdba063.tar.bz2 |
Arbitrary point checkpoint commit. Take no notice.
Diffstat (limited to 'Demo/metaclasses/Enum.py')
-rw-r--r-- | Demo/metaclasses/Enum.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Demo/metaclasses/Enum.py b/Demo/metaclasses/Enum.py index 71a8e52..e1ae695 100644 --- a/Demo/metaclasses/Enum.py +++ b/Demo/metaclasses/Enum.py @@ -1,4 +1,8 @@ -"""Enumeration metaclass.""" +"""Enumeration metaclass. + +XXX This is very much a work in progress. + +""" import string |