Displaying 3 results from an estimated 3 matches for "u00a3".
Did you mean:
u0043
2007 Feb 12
6
Specs for Ajax partials with unicode characters
...ecify "the response should definitely have a p with ?500" do
response.should_have ''p'', :text => ''?500''
end
end
The error for the should_have_tag gives this error message:
Element.update("test_div", "<p>\u00a3500</p>"); should include
["[\"p\", {:content=>\"?500\"}]"]
I don''t know, well, anything about JavaScript but I''m informed by one
of our developers that the replacement string is in JSON format.
Either way the only way to make the...
2014 Jan 15
0
[PATCH 2/4] hivex: python: Fix encoding for "special" test script
...h.node_children (root) if h.node_name(n) == u("weird\u2122") ]
assert len (ns) == 1
-vs = [ v for v in h.node_values (ns[0]) if h.value_key(v) == u"symbols $£₤₧€" ]
+# "symbols $£₤₧€"
+vs = [ v for v in h.node_values (ns[0]) if h.value_key(v) == u("symbols \u0024\u00a3\u20a4\u20a7\u20ac") ]
assert len (vs) == 1
--
1.8.5.2
2014 Jan 15
4
[PATCH 1/4] hivex: Python 2.6 does not have sysconfig.
---
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index 6785037..203f34f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -329,8 +329,8 @@ AS_IF([test "x$enable_python" != "xno"],
AC_MSG_CHECKING([for Python extension suffix (PEP-3149)])
if test -z "$PYTHON_EXT_SUFFIX"; then