[pypy-svn] r8683 - pypy/dist/pypy/lib

sanxiyn at codespeak.net sanxiyn at codespeak.net
Sat Jan 29 06:35:16 CET 2005


Author: sanxiyn
Date: Sat Jan 29 06:35:16 2005
New Revision: 8683

Added:
   pypy/dist/pypy/lib/sre_adapt.py
Modified:
   pypy/dist/pypy/lib/re.py
Log:
sre_adapt, providing Pattern just like dumbre and plexre


Modified: pypy/dist/pypy/lib/re.py
==============================================================================
--- pypy/dist/pypy/lib/re.py	(original)
+++ pypy/dist/pypy/lib/re.py	Sat Jan 29 06:35:16 2005
@@ -1,5 +1,6 @@
 from dumbre import Pattern
 # from plexre import Pattern
+# from sre_adapt import Pattern
 
 
 # From CPython

Added: pypy/dist/pypy/lib/sre_adapt.py
==============================================================================
--- (empty file)
+++ pypy/dist/pypy/lib/sre_adapt.py	Sat Jan 29 06:35:16 2005
@@ -0,0 +1,2 @@
+import sre_compile
+Pattern = sre_compile.compile



More information about the Pypy-commit mailing list