Ignore:
Timestamp:
Mar 19, 2014, 11:31:01 PM (11 years ago)
Author:
dmik
Message:

python: Merge vendor 2.7.6 to trunk.

Location:
python/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/trunk

  • python/trunk/Doc/c-api/reflection.rst

    r2 r391  
    66==========
    77
    8 .. cfunction:: PyObject* PyEval_GetBuiltins()
     8.. c:function:: PyObject* PyEval_GetBuiltins()
    99
    1010   Return a dictionary of the builtins in the current execution frame,
     
    1212
    1313
    14 .. cfunction:: PyObject* PyEval_GetLocals()
     14.. c:function:: PyObject* PyEval_GetLocals()
    1515
    1616   Return a dictionary of the local variables in the current execution frame,
     
    1818
    1919
    20 .. cfunction:: PyObject* PyEval_GetGlobals()
     20.. c:function:: PyObject* PyEval_GetGlobals()
    2121
    2222   Return a dictionary of the global variables in the current execution frame,
     
    2424
    2525
    26 .. cfunction:: PyFrameObject* PyEval_GetFrame()
     26.. c:function:: PyFrameObject* PyEval_GetFrame()
    2727
    2828   Return the current thread state's frame, which is *NULL* if no frame is
     
    3030
    3131
    32 .. cfunction:: int PyEval_GetRestricted()
     32.. c:function:: int PyFrame_GetLineNumber(PyFrameObject *frame)
     33
     34   Return the line number that *frame* is currently executing.
     35
     36
     37.. c:function:: int PyEval_GetRestricted()
    3338
    3439   If there is a current frame and it is executing in restricted mode, return true,
     
    3641
    3742
    38 .. cfunction:: const char* PyEval_GetFuncName(PyObject *func)
     43.. c:function:: const char* PyEval_GetFuncName(PyObject *func)
    3944
    4045   Return the name of *func* if it is a function, class or instance object, else the
     
    4247
    4348
    44 .. cfunction:: const char* PyEval_GetFuncDesc(PyObject *func)
     49.. c:function:: const char* PyEval_GetFuncDesc(PyObject *func)
    4550
    4651   Return a description string, depending on the type of *func*.
    4752   Return values include "()" for functions and methods, " constructor",
    4853   " instance", and " object".  Concatenated with the result of
    49    :cfunc:`PyEval_GetFuncName`, the result will be a description of
     54   :c:func:`PyEval_GetFuncName`, the result will be a description of
    5055   *func*.
Note: See TracChangeset for help on using the changeset viewer.