#11819: don't use the deprecated 'new' module
----------------------------+-----------------------------------------------
   Reporter:  jhpalmieri    |          Owner:  was          
       Type:  enhancement   |         Status:  needs_review 
   Priority:  minor         |      Milestone:  sage-4.8     
  Component:  pickling      |       Keywords:               
Work_issues:                |       Upstream:  N/A          
   Reviewer:  Julian Rueth  |         Author:  John Palmieri
     Merged:                |   Dependencies:               
----------------------------+-----------------------------------------------

Old description:

> 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(...)
> }}}

New description:

 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(...)
 }}}

 ----

 Apply

 1. [attachment:trac_11819_review.patch]

 to the sage repository

--

Comment(by saraedum):

 Apply trac_11819_review.patch

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/11819#comment:6>
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