From: Finn B. <bc...@us...> - 2001-12-20 17:41:33
|
Update of /cvsroot/jython/jython/org/python/core In directory usw-pr-cvs1:/tmp/cvs-serv30000 Modified Files: PySystemState.java Log Message: Disable the "trying to reinitialize with new properties" warning. Maybe we should have a way of controlling this warning, but for now, I simply remove it. Index: PySystemState.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/core/PySystemState.java,v retrieving revision 2.71 retrieving revision 2.72 diff -C2 -d -r2.71 -r2.72 *** PySystemState.java 2001/12/16 13:04:02 2.71 --- PySystemState.java 2001/12/20 17:41:30 2.72 *************** *** 359,366 **** if (initialized) { ! if (postProperties != null) { ! Py.writeError("systemState", ! "trying to reinitialize with new properties"); ! } return; } --- 359,367 ---- if (initialized) { ! //if (postProperties != null) { ! // Py.writeError("systemState", ! // "trying to reinitialize with new " + ! // "properties"); ! //} return; } |