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.

Author mark
Recipients akitada, akuchling, amaury.forgeotdarc, brian.curtin, collinwinter, ezio.melotti, georg.brandl, gregory.p.smith, jaylogan, jimjjewett, loewis, mark, moreati, mrabarnett, nneonneo, pitrou, r.david.murray, rsc, sjmachin, timehorse, vbr
Date 2010-07-07.09:13:39
SpamBayes Score 0.0030283274
Marked as misclassified No
Message-id <1278494021.28.0.145375425868.issue2636@psf.upfronthosting.co.za>
In-reply-to
Content
If you do:

>>> import regex as re
>>> dir(re)

you get over 160 items, many of which begin with an underscore and so are private. Couldn't __dir__ be reimplemented to eliminate them. (I know that the current re module's dir() also returns private items, but I guess this is a legacy of not having the __dir__ special method?)
History
Date User Action Args
2010-07-07 09:13:41marksetrecipients: + mark, loewis, akuchling, georg.brandl, collinwinter, gregory.p.smith, jimjjewett, sjmachin, amaury.forgeotdarc, pitrou, nneonneo, rsc, timehorse, vbr, ezio.melotti, mrabarnett, jaylogan, akitada, moreati, r.david.murray, brian.curtin
2010-07-07 09:13:41marksetmessageid: <1278494021.28.0.145375425868.issue2636@psf.upfronthosting.co.za>
2010-07-07 09:13:39marklinkissue2636 messages
2010-07-07 09:13:39markcreate