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 vstinner
Recipients dom1310df, ezio.melotti, gvanrossum, malin, mrabarnett, serhiy.storchaka, vstinner
Date 2022-04-02.12:05:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1648901155.02.0.42648954644.issue47152@roundup.psfhosted.org>
In-reply-to
Content
It's funny to still see mentions of "experimental stuff" in Python 3.11 (2022), whereas these "experimental stuff" are there for 20 years.

*Maybe* it's time to consider that re.template() and re.Scanner are no longer experimental? Maybe change their status to alpha or beta? :-D


commit 770617b23e286f1147f9480b5f625e88e7badd50
Author: Fredrik Lundh <fredrik@pythonware.com>
Date:   Sun Jan 14 15:06:11 2001 +0000

    SRE fixes for 2.1 alpha:

+# sre extensions (experimental, don't rely on these)
+T = TEMPLATE = sre_compile.SRE_FLAG_TEMPLATE # disable backtracking


commit 7cafe4d7e466996d5fc32e871fe834e0e0c94282
Author: Fredrik Lundh <fredrik@pythonware.com>
Date:   Sun Jul 2 17:33:27 2000 +0000

    - actually enabled charset anchors in the engine (still not
      used by the code generator)
    
    - changed max repeat value in engine (to match earlier array fix)
    
    - added experimental "which part matched?" mechanism to sre; see
      http://hem.passagen.se/eff/2000_07_01_bot-archive.htm#416954
      or python-dev for details.


+# experimental stuff (see python-dev discussions for details)
+
+class Scanner:
(...)
History
Date User Action Args
2022-04-02 12:05:55vstinnersetrecipients: + vstinner, gvanrossum, ezio.melotti, mrabarnett, serhiy.storchaka, malin, dom1310df
2022-04-02 12:05:55vstinnersetmessageid: <1648901155.02.0.42648954644.issue47152@roundup.psfhosted.org>
2022-04-02 12:05:55vstinnerlinkissue47152 messages
2022-04-02 12:05:54vstinnercreate