This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Split open() and file()
Type: Stage:
Components: Interpreter Core Versions: Python 2.5
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: nnorwitz Nosy List: aahz, nnorwitz
Priority: normal Keywords: patch

Created on 2006-04-30 04:12 by aahz, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
open.diff aahz, 2006-04-30 04:12 Unified diff for this patch
Messages (2)
msg50142 - (view) Author: Aahz (aahz) * (Python triager) Date: 2006-04-30 04:12
Make open() a factory function instead of an alias to file().  Includes
doc patches and a bugfix to Lib/test/test_subprocess.py (which was
relying on open() being an alias to file()).  There were no other
changes to the test suite -- this appears to be a completely transparent
fix.
msg50143 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2006-05-02 04:43
Logged In: YES 
user_id=33168

Minor doc mods.

Committed revision 45850.
History
Date User Action Args
2022-04-11 14:56:17adminsetgithub: 43296
2006-04-30 04:12:20aahzcreate