[pypy-svn] r13399 - pypy/dist/pypy/objspace/flow

arigo at codespeak.net arigo at codespeak.net
Tue Jun 14 19:58:45 CEST 2005


Author: arigo
Date: Tue Jun 14 19:58:43 2005
New Revision: 13399

Modified:
   pypy/dist/pypy/objspace/flow/operation.py
Log:
made Table internal.


Modified: pypy/dist/pypy/objspace/flow/operation.py
==============================================================================
--- pypy/dist/pypy/objspace/flow/operation.py	(original)
+++ pypy/dist/pypy/objspace/flow/operation.py	Tue Jun 14 19:58:43 2005
@@ -106,6 +106,8 @@
 # if multiple built-in functions correspond to it.  The first one should
 # be picked, though, as the best built-in for the given operation name.
 # Lines ('name', operator.name) are added automatically.
+
+# INTERNAL ONLY, use the dicts declared at the top of the file.
 Table = [
     ('id',              id),
     ('type',            new_style_type),
@@ -172,3 +174,4 @@
         Arity[name] = line[2]
         assert name in FunctionByName
 setup()
+del Table   # INTERNAL ONLY, use the dicts declared at the top of the file



More information about the Pypy-commit mailing list