[Python-bugs-list] [Bug #120082] making vars() more useful

noreply@sourceforge.net noreply@sourceforge.net
Wed, 1 Nov 2000 07:46:49 -0800


Bug #120082, was updated on 2000-Oct-31 14:20
Here is a current snapshot of the bug.

Project: Python
Category: Core
Status: Open
Resolution: None
Bug Group: None
Priority: 4
Summary: making vars() more useful

Details: It might make sense to change built-in vars() with no arguments.  Instead of being equivalent to locals(), it should be equivalent to the following Python code:

d = globals().copy()
d.update(locals())


Follow-Ups:

Date: 2000-Nov-01 07:46
By: jhylton

Comment:
Is this a feature request (PEP 42) or a bug report?

-------------------------------------------------------

For detailed info, follow this link:
http://sourceforge.net/bugs/?func=detailbug&bug_id=120082&group_id=5470