#18554: Python 3 preparation: Most functions of module {{{string}}} are gone in 
Py3
-------------------------+-------------------------------------------------
       Reporter:         |        Owner:
  wluebbe                |       Status:  needs_review
           Type:         |    Milestone:  sage-6.8
  enhancement            |   Resolution:
       Priority:  major  |    Merged in:
      Component:  misc   |    Reviewers:
       Keywords:         |  Work issues:
  python3                |       Commit:
        Authors:         |  c937e392bbece486170d9582e6957b029d7b531a
  Wilfried Luebbe        |     Stopgaps:
Report Upstream:  N/A    |
         Branch:         |
  u/wluebbe/18554        |
   Dependencies:         |
-------------------------+-------------------------------------------------
Changes (by {'newvalue': u'Wilfried Luebbe', 'oldvalue': ''}):

 * status:  new => needs_review
 * author:   => Wilfried Luebbe
 * branch:   => u/wluebbe/18554
 * keywords:   => python3
 * commit:   => c937e392bbece486170d9582e6957b029d7b531a


Old description:

> 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
> }}}

New description:

 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 removed:
 {{{
 capitalize|center|count|expandtabs|find|index|join|
 ljust|lower|lstrip|maketrans|replace|rfind|rindex|rjust|rsplit|
 rstrip|split|strip|swapcase|translate|upper|zfill
 }}}

 This ticket is tracked as a dependency of meta-ticket ticket:15980.

--

Comment:

 New commits:
 
||[http://git.sagemath.org/sage.git/commit/?id=c937e392bbece486170d9582e6957b029d7b531a
 c937e39]||{{{Trac #18533: Most functions of module string are gone in
 Py3}}}||

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