#18554: Python 3 preparation: Most functions of module {{{string}}} are gone in 
Py3
---------------------------+----------------------------
   Reporter:  wluebbe      |            Owner:
       Type:  enhancement  |           Status:  new
   Priority:  major        |        Milestone:  sage-6.8
  Component:  misc         |         Keywords:
  Merged in:               |          Authors:
  Reviewers:               |  Report Upstream:  N/A
Work issues:               |           Branch:
     Commit:               |     Dependencies:
   Stopgaps:               |
---------------------------+----------------------------
 Use of {{{string}}} module functions like {{{join()}}} must be replaced by
 the corresponding {{{string}}} methods.

 {{{from string import join}}} will fail. Those imports must be removed.

 Uses like {{{print(string.join(a_list)}}} must be changed to
 {{{print("".join(a_list)}}}.

 The following functions are reoved:
 {{{
 capitalize|center|count|expandtabs|find|index|join|
 ljust|lower|lstrip|maketrans|replace|rfind|rindex|rjust|rsplit|
 rstrip|split|strip|swapcase|translate|upper|zfill
 }}}

--
Ticket URL: <http://trac.sagemath.org/ticket/18554>
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 unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-trac.
For more options, visit https://groups.google.com/d/optout.

Reply via email to