[pypy-svn] r13872 - pypy/dist/pypy/annotation

arigo at codespeak.net arigo at codespeak.net
Sat Jun 25 18:07:49 CEST 2005


Author: arigo
Date: Sat Jun 25 18:07:48 2005
New Revision: 13872

Modified:
   pypy/dist/pypy/annotation/builtin.py
Log:
os.path.dirname and os.path.join seem to be annotatable enough.


Modified: pypy/dist/pypy/annotation/builtin.py
==============================================================================
--- pypy/dist/pypy/annotation/builtin.py	(original)
+++ pypy/dist/pypy/annotation/builtin.py	Sat Jun 25 18:07:48 2005
@@ -272,9 +272,9 @@
 BUILTIN_ANALYZERS[unicodedata.decimal] = unicodedata_decimal # xxx
 
 # os.path stuff
-BUILTIN_ANALYZERS[os.path.dirname] = pathpart
+#BUILTIN_ANALYZERS[os.path.dirname] = pathpart
 BUILTIN_ANALYZERS[os.path.normpath] = pathpart
-BUILTIN_ANALYZERS[os.path.join] = pathpart
+#BUILTIN_ANALYZERS[os.path.join] = pathpart
 BUILTIN_ANALYZERS[os.path.exists] = test
 BUILTIN_ANALYZERS[os.path.isdir] = test
 



More information about the Pypy-commit mailing list