[svn:parrot] r49677 - in trunk: . src/pmc
NotFound at svn.parrot.org
NotFound at svn.parrot.org
Mon Oct 25 21:41:01 UTC 2010
Author: NotFound
Date: Mon Oct 25 21:41:01 2010
New Revision: 49677
URL: https://trac.parrot.org/parrot/changeset/49677
Log:
delete deprecated method lower in String PMC, TT #1606
Modified:
trunk/DEPRECATED.pod
trunk/src/pmc/string.pmc
Modified: trunk/DEPRECATED.pod
==============================================================================
--- trunk/DEPRECATED.pod Mon Oct 25 20:04:40 2010 (r49676)
+++ trunk/DEPRECATED.pod Mon Oct 25 21:41:01 2010 (r49677)
@@ -114,13 +114,6 @@
L<https://trac.parrot.org/parrot/ticket/1561>
-=item Method lower on String [eligible in 2.7]
-
-Use the downcase opcode or subclass with a method name consistent with your
-HLL.
-
-L<http://trac.parrot.org/parrot/ticket/1606>
-
=item Method unescape on String [experimental]
This is a helper method for testing of Parrot_str_unescape_string.
Modified: trunk/src/pmc/string.pmc
==============================================================================
--- trunk/src/pmc/string.pmc Mon Oct 25 20:04:40 2010 (r49676)
+++ trunk/src/pmc/string.pmc Mon Oct 25 21:41:01 2010 (r49677)
@@ -653,26 +653,6 @@
=over 4
-=item C<PMC *lower()>
-
-Downcase this string
-
-=cut
-
-*/
-
- METHOD lower() {
- STRING *str_val;
- STRING *s;
-
- GET_ATTR_str_val(INTERP, SELF, str_val);
- s = Parrot_str_downcase(INTERP, str_val);
-
- RETURN(STRING *s);
- }
-
-/*
-
=item C<void trans(STRING *src, PMC *trams_table)>
Translate ascii string C<src> with entries from C<trans_table>.
More information about the parrot-commits
mailing list