Update of /cvsroot/jython/jython/org/python/util
In directory usw-pr-cvs1:/tmp/cvs-serv28216
Modified Files:
PyServlet.java
Log Message:
Added missing import of HttpServlet in the example.
Index: PyServlet.java
===================================================================
RCS file: /cvsroot/jython/jython/org/python/util/PyServlet.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** PyServlet.java 2001/02/14 22:31:05 1.6
--- PyServlet.java 2001/02/16 18:13:45 1.7
***************
*** 27,30 ****
--- 27,31 ----
* e.g. http://localhost:8080/test/hello.py
*
+ * from javax.servlet.http import HttpServlet
* class hello(HttpServlet):
* def doGet(self,req, res):
|