Author: [email protected]
Date: Thu Mar 26 20:13:46 2009
New Revision: 1623

Modified:
    branches/bleeding_edge/tools/test.py

Log:
Added url decoding of special commands.


Modified: branches/bleeding_edge/tools/test.py
==============================================================================
--- branches/bleeding_edge/tools/test.py        (original)
+++ branches/bleeding_edge/tools/test.py        Thu Mar 26 20:13:46 2009
@@ -1174,8 +1174,8 @@
      return ExpandCommand
    else:
      pos = value.find('@')
-    prefix = value[:pos].split()
-    suffix = value[pos+1:].split()
+    prefix = urllib.unquote(value[:pos]).split()
+    suffix = urllib.unquote(value[pos+1:]).split()
      def ExpandCommand(args):
        return prefix + args + suffix
      return ExpandCommand

--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to