Update of /cvsroot/jython/jython/org/python/util
In directory usw-pr-cvs1:/tmp/cvs-serv4377
Modified Files:
jython.java
Log Message:
Removed -X option and classBasedExceptions.
Index: jython.java
===================================================================
RCS file: /cvsroot/jython/jython/org/python/util/jython.java,v
retrieving revision 2.17
retrieving revision 2.18
diff -C2 -r2.17 -r2.18
*** jython.java 2001/02/22 13:05:32 2.17
--- jython.java 2001/02/25 17:10:12 2.18
***************
*** 14,18 ****
" prompts, even if stdin does not appear to be a terminal\n"+
"-S : don't imply `import site' on initialization\n"+
- "-X : disable class based standard exceptions\n"+
"-v : verbose (trace import statements)\n"+
"-Dprop=v : Set the property `prop' to value `v'\n"+
--- 14,17 ----
***************
*** 246,252 ****
if (!fixInteractive)
interactive = false;
- }
- else if (arg.equals("-X")) {
- Options.classBasedExceptions = false;
}
else if (arg.equals("-v")) {
--- 245,248 ----
|