~ubuntu-branches/ubuntu/quantal/python2.7/quantal

« back to all changes in this revision

Viewing changes to Doc/c-api/concrete.rst

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-03-09 19:28:43 UTC
  • mto: (36.1.11 sid)
  • mto: This revision was merged to the branch mainline in revision 51.
  • Revision ID: package-import@ubuntu.com-20120309192843-n84bbtrkfxw34p6n
Tags: upstream-2.7.3~rc1
ImportĀ upstreamĀ versionĀ 2.7.3~rc1

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
Passing them an object of the wrong type is not a good idea; if you receive an
12
12
object from a Python program and you are not sure that it has the right type,
13
13
you must perform a type check first; for example, to check that an object is a
14
 
dictionary, use :cfunc:`PyDict_Check`.  The chapter is structured like the
 
14
dictionary, use :c:func:`PyDict_Check`.  The chapter is structured like the
15
15
"family tree" of Python object types.
16
16
 
17
17
.. warning::