search for: u2122

Displaying 3 results from an estimated 3 matches for "u2122".

Did you mean: 2122
2010 Jul 20
1
Registered / trademark signs
Colleagues, What is the easiest means to embed a: ? (registered) or ? (trademark) sign in text in a graphic. I would like to use mtext and avoid plotmath, if possible. Ideally, the sign should be superscripted but I can easily sacrifice that. Optimally, I need a solution that works in both OS X and Windows (? XP) and with R versions ? 2.11 Thanks in advance. Dennis Dennis Fisher MD P <
2014 Jan 15
0
[PATCH 2/4] hivex: python: Fix encoding for "special" test script
...t; ] +vs = [ v for v in h.node_values (ns[0]) if h.value_key(v) == u("zero\0val") ] assert len (vs) == 1 -ns = [ n for n in h.node_children (root) if h.node_name(n) == u"weird™" ] +# "weird™" +ns = [ n for n in 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....
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