[svn:parrot] r37636 - trunk/src/pmc

cotto at svn.parrot.org cotto at svn.parrot.org
Sun Mar 22 04:20:09 UTC 2009


Author: cotto
Date: Sun Mar 22 04:20:05 2009
New Revision: 37636
URL: https://trac.parrot.org/parrot/changeset/37636

Log:
[PMC] delete an old and vague comment

Modified:
   trunk/src/pmc/hash.pmc

Modified: trunk/src/pmc/hash.pmc
==============================================================================
--- trunk/src/pmc/hash.pmc	Sun Mar 22 04:03:11 2009	(r37635)
+++ trunk/src/pmc/hash.pmc	Sun Mar 22 04:20:05 2009	(r37636)
@@ -437,11 +437,6 @@
         HashBucket * const b =
             parrot_hash_get_bucket(INTERP, (Hash *)PMC_struct_val(SELF), key);
 
-        /*
-         * RT #46647 current behaviour of $S0 = hsh['no_such_key'] in
-         *      PGE and possibly more code needs an empty STRING
-         *      (--leo)
-         */
         if (!b)
             return Parrot_str_new_noinit(INTERP, enum_stringrep_one, 0);
 
@@ -483,11 +478,6 @@
         keystr = make_hash_key(INTERP, key);
         b      = parrot_hash_get_bucket(INTERP, hash, keystr);
 
-        /*
-         * RT #46647 current behaviour of $S0 = hsh['no_such_key'] in
-         *      PGE and possibly more code needs an empty STRING
-         *      (--leo)
-         */
         if (!b)
             return Parrot_str_new_noinit(INTERP, enum_stringrep_one, 0);
 


More information about the parrot-commits mailing list