#11115: Rewrite cached_method in Cython
-----------------------------------------------------+----------------------
Reporter: SimonKing | Owner: jason
Type: enhancement | Status:
needs_info
Priority: major | Milestone:
sage-4.7.2
Component: misc | Keywords:
category cython cache
Work_issues: | Upstream: N/A
Reviewer: Nicolas M. ThiƩry, Andrey Novoseltsev | Author: Simon
King
Merged: | Dependencies: #9976
#11298 #11342 #9138
-----------------------------------------------------+----------------------
Comment(by SimonKing):
I suggest to go through `sage_getdoc` step by step. For me, it is as
follows:
{{{
sage: from sage.misc.sageinspect import sage_getdoc,
_sage_getdoc_unformatted, _extract_embedded_position
sage: sage.misc.sageinspect.EMBEDDED_MODE
False
sage: obj = O.wrapped_method
sage: r = _sage_getdoc_unformatted(obj)
sage: s = sage.misc.sagedoc.format(str(r), embedded=False)
sage: print s
File: _mnt_local_king__sage_temp_mpc622_9687_tmp_0_spyx_0.pyx
(starting at line 6) some doc for a wrapped cython method
sage: print r
File: _mnt_local_king__sage_temp_mpc622_9687_tmp_0_spyx_0.pyx (starting at
line 6)
some doc for a wrapped cython method
}}}
Is the result for s fundamentally different on your machine?
{{{
sage: pos = _extract_embedded_position(s)
sage: pos is None
True
}}}
Aha! And I suppose you get `pos!=None`!
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/11115#comment:107>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.