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: PropertyType is not defined in types.py
Type: Stage:
Components: Library (Lib) Versions: Python 2.3
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: loewis, nnorwitz
Priority: normal Keywords: patch

Created on 2002-01-29 00:47 by nnorwitz, last changed 2022-04-10 16:04 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
patch-types nnorwitz, 2002-01-29 00:47 patch to add PropertyType
Messages (3)
msg38805 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2002-01-29 00:47
types.py doesn't define PropertyType.
The attached patch defines it.
msg38806 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2002-01-30 22:49
Logged In: YES 
user_id=21627

What would be wrong with

PropertyType = property

In the light of the new-style builtins, is that even needed?
msg38807 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2002-01-31 02:32
Logged In: YES 
user_id=33168

I did this thinking about things the old way (pre-2.2)
and trying to keep consistency.

After thinking about it, I don't think it's worthwhile
to implement this patch, so I'm closing it.
History
Date User Action Args
2022-04-10 16:04:55adminsetgithub: 35990
2002-01-29 00:47:48nnorwitzcreate