0

While reading some others' code, I came across this type of docstring @param reporter: A L{Reporter} instance, where ... and figured out after some search that it's Epydoc. But what does these notations such as L{ClassName?} and C{type?} mean?

Taejoon Byun
  • 101
  • 1
  • 4
  • 1
    RTFEpydoc...? http://epydoc.sourceforge.net/manual-epytext.html#documentation-crossreference-links – deceze May 13 '16 at 04:19

1 Answers1

0

From the epydoc documentation,

  • C{...}: Source code or a Python identifier. See this.
  • L{...}: Documentation crossreference links. See this.
Priyansh Agrawal
  • 330
  • 2
  • 19