diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-05-02 04:43:14 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-05-02 04:43:14 +0000 |
commit | c4edb0ec81f437b84a4011e3a375892d48d0bd6c (patch) | |
tree | df542d1d9c5d89d5555d7cda6026628f2139f05f /Objects/fileobject.c | |
parent | 4bbf66e852e2e812b4ef0fa774ff8614c96a0b82 (diff) | |
download | cpython-git-c4edb0ec81f437b84a4011e3a375892d48d0bd6c.tar.gz |
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 e08afe64ba..25b3361766 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 = { |