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: os.py: base class _Environ on dict instead of UserDict
Type: Stage:
Components: Library (Lib) Versions: Python 2.5
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: collinwinter, doko, loewis
Priority: normal Keywords: patch

Created on 2005-01-02 10:22 by doko, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
udict.diff doko, 2005-01-02 10:22 patch for os.py
Messages (3)
msg47446 - (view) Author: Matthias Klose (doko) * (Python committer) Date: 2005-01-02 10:22
os.py doesn't have a note, that is has to stay
compatible with python2.2 and before. Use the builtin
dict class for handling the environment.
msg47447 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2005-03-03 23:43
Logged In: YES 
user_id=21627

The patch is currently outdated. However, I'm wondering what
the advantage of inheriting from dict is.
msg47448 - (view) Author: Collin Winter (collinwinter) * (Python committer) Date: 2007-03-10 16:08
Patch #1367711 does the same thing and is against a more recent checkout; closing.
History
Date User Action Args
2022-04-11 14:56:08adminsetgithub: 41387
2005-01-02 10:22:00dokocreate