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: regs attribute on regex objects not documented
Type: Stage:
Components: Documentation Versions: Python 2.4
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, jlowery2006
Priority: normal Keywords:

Created on 2006-03-24 01:41 by jlowery2006, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg27865 - (view) Author: Jeff Lowery (jlowery2006) Date: 2006-03-24 01:41
Came across the use of <regex object>.regs attribute in 
the tools/scripts/classfix.py program (line 162), but 
it's not an attribute that's documented in the Python 
Library Reference.

msg27866 - (view) Author: Jeff Lowery (jlowery2006) Date: 2006-03-24 19:21
Logged In: YES 
user_id=1484419

It was pointed out to me on the comp.lang.python list that 
regs is part of the now-defunction regex package.

Perhaps it would be possible to denote the module as 
deprecated in the regex.py code?  Dunno, but I do know that 
PyLint didn't pick up on it as being deprecated.
msg27867 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2006-03-26 20:37
Logged In: YES 
user_id=849994

regex will be removed in Python 2.5.
History
Date User Action Args
2022-04-11 14:56:16adminsetgithub: 43083
2006-03-24 01:41:54jlowery2006create