#11819: don't use the deprecated 'new' module
---------------------------+------------------------------------------------
   Reporter:  jhpalmieri   |          Owner:  was          
       Type:  enhancement  |         Status:  new          
   Priority:  minor        |      Milestone:  sage-4.7.2   
  Component:  pickling     |       Keywords:               
Work_issues:               |       Upstream:  N/A          
   Reviewer:               |         Author:  John Palmieri
     Merged:               |   Dependencies:               
---------------------------+------------------------------------------------
 The Python module 'new' is deprecated and has been removed in Python 3.0,
 so since it's not hard to avoid it, we shouldn't use it.  The attached
 patch removes all imports of 'new', tested with
 {{{
 sage: search_src('import', 'new', whole_word=True)
 }}}
 The file new.py (in `SAGE_ROOT/local/lib/python/`) contains code like
 {{{
 from types import InstanceType as instance
 }}}
 so we just have to replace
 {{{
 import new
 new.instance(...)
 }}}
 with
 {{{
 import types
 types.InstanceType(...)
 }}}

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/11819>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

-- 
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sage-trac?hl=en.

Reply via email to