Kills the old eventspace, and creates a new parameterization
Also calls the super method.
To change/extend the user parameter settings, override this method, and after the call to the super method returns, change the value of the parameters in the user's thread. For example, to add a definition of a function, f, to the users' namespace, add this to a interactions class extension (see drscheme:get/extend:extend-interactions-text for details)
(inherit user-namespace)
(rename [super-reset-console reset-console])
(public
[reset-console
(lambda ()
(super-reset-console) ;; initialize user-namespace ivar
(parameterize ([current-namespace user-namespace])
(global-defined-value 'f (lambda (...) ...))))]))