[py-svn] r19840 - in py/dist/py: bin xmlobj

ale at codespeak.net ale at codespeak.net
Sun Nov 13 21:29:27 CET 2005


Author: ale
Date: Sun Nov 13 21:29:25 2005
New Revision: 19840

Modified:
   py/dist/py/bin/py.test
   py/dist/py/xmlobj/html.py
Log:
implementation of pep302 (import hooks). Currently mostly implemented at applevel - will try to convert to interpreter level later.

Modified: py/dist/py/bin/py.test
==============================================================================
--- py/dist/py/bin/py.test	(original)
+++ py/dist/py/bin/py.test	Sun Nov 13 21:29:25 2005
@@ -1,4 +1,5 @@
-#!/usr/bin/env python 
+#!/usr/bin/env python2.4
+import sys
 
 from _findpy import py 
 py.test.cmdline.main() 

Modified: py/dist/py/xmlobj/html.py
==============================================================================
--- py/dist/py/xmlobj/html.py	(original)
+++ py/dist/py/xmlobj/html.py	Sun Nov 13 21:29:25 2005
@@ -25,7 +25,7 @@
     __stickyname__ = True 
     __tagspec__ = dict([(x,1) for x in ( 
         "h1,h2,h3,h5,h6,p,b,i,a,div,span,code,"
-        "html,head,title,style,table,tr,tt,"
+        "html,head,title,style,table,thead,tr,tt,"
         "td,th,link,img,meta,body,pre,br,ul,"
         "ol,li,em,form,input,select,option,"
         "button,script,colgroup,col,map,area,"



More information about the pytest-commit mailing list