[pypy-svn] r46914 - in pypy/dist/pypy/tool: . test

xoraxax at codespeak.net xoraxax at codespeak.net
Wed Sep 26 23:21:42 CEST 2007


Author: xoraxax
Date: Wed Sep 26 23:21:41 2007
New Revision: 46914

Modified:
   pypy/dist/pypy/tool/import_graph.py
   pypy/dist/pypy/tool/test/test_tab.py
Log:
Removed two remaining pyrex references.



Modified: pypy/dist/pypy/tool/import_graph.py
==============================================================================
--- pypy/dist/pypy/tool/import_graph.py	(original)
+++ pypy/dist/pypy/tool/import_graph.py	Wed Sep 26 23:21:41 2007
@@ -10,7 +10,7 @@
 
 def include_file(path):
     if ("test" in str(path) or "tool" in str(path) or
-        "documentation" in str(path) or "pyrex" in str(path) or
+        "documentation" in str(path) or 
         "_cache" in str(path)):
         return False
     if path.basename in exclude_files:

Modified: pypy/dist/pypy/tool/test/test_tab.py
==============================================================================
--- pypy/dist/pypy/tool/test/test_tab.py	(original)
+++ pypy/dist/pypy/tool/test/test_tab.py	Wed Sep 26 23:21:41 2007
@@ -6,7 +6,7 @@
 import os
 
 ROOT = autopath.pypydir
-EXCLUDE = {'/translator/pyrex/Pyrex': True}
+EXCLUDE = {}
 
 
 def test_no_tabs():



More information about the Pypy-commit mailing list