diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-05-02 04:43:14 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-05-02 04:43:14 (GMT) |
commit | c4edb0ec81f437b84a4011e3a375892d48d0bd6c (patch) | |
tree | df542d1d9c5d89d5555d7cda6026628f2139f05f /Objects/fileobject.c | |
parent | 4bbf66e852e2e812b4ef0fa774ff8614c96a0b82 (diff) | |
download | cpython-c4edb0ec81f437b84a4011e3a375892d48d0bd6c.zip cpython-c4edb0ec81f437b84a4011e3a375892d48d0bd6c.tar.gz cpython-c4edb0ec81f437b84a4011e3a375892d48d0bd6c.tar.bz2 |
SF #1479181: split open() and file() from being aliases for each other.
Diffstat (limited to 'Objects/fileobject.c')
-rw-r--r-- | Objects/fileobject.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Objects/fileobject.c b/Objects/fileobject.c index e08afe6..25b3361 100644 --- a/Objects/fileobject.c +++ b/Objects/fileobject.c @@ -2025,10 +2025,6 @@ PyDoc_STR( "'\\r', '\\n', '\\r\\n' or a tuple containing all the newline types seen.\n" "\n" "'U' cannot be combined with 'w' or '+' mode.\n" -) -PyDoc_STR( -"\n" -"Note: open() is an alias for file()." ); PyTypeObject PyFile_Type = { |