diff options
author | Guido van Rossum <guido@python.org> | 1992-02-05 11:17:52 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-02-05 11:17:52 (GMT) |
commit | 577894929523315f30f020f4c43f4de84475690d (patch) | |
tree | 292bd7b3a92c3db57270df5a940e78f8086dcfd4 /Python/bltinmodule.c | |
parent | 16dfd29e4490e41e07cef90e55b43e85e12ff80f (diff) | |
download | cpython-577894929523315f30f020f4c43f4de84475690d.zip cpython-577894929523315f30f020f4c43f4de84475690d.tar.gz cpython-577894929523315f30f020f4c43f4de84475690d.tar.bz2 |
Get rid of comment about open().
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r-- | Python/bltinmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 4b6f301..c2a7cb2 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -613,7 +613,7 @@ static struct methodlist builtin_methods[] = { {"max", builtin_max}, {"min", builtin_min}, {"oct", builtin_oct}, - {"open", builtin_open}, /* XXX move to OS module */ + {"open", builtin_open}, {"ord", builtin_ord}, {"pow", builtin_pow}, {"range", builtin_range}, |