~ubuntu-branches/ubuntu/lucid/python2.6/lucid

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-03-11 13:30:19 UTC
  • mto: (10.1.13 sid)
  • mto: This revision was merged to the branch mainline in revision 44.
  • Revision ID: james.westby@ubuntu.com-20100311133019-sblbooa3uqrkoe70
Tags: upstream-2.6.5~rc2
ImportĀ upstreamĀ versionĀ 2.6.5~rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
   .. versionadded:: 2.6
73
73
 
74
74
 
75
 
.. cfunction:: double PyFloat_GetMax(void)
 
75
.. cfunction:: double PyFloat_GetMax()
76
76
 
77
77
   Return the maximum representable finite float *DBL_MAX* as C :ctype:`double`.
78
78
 
79
79
   .. versionadded:: 2.6
80
80
 
81
81
 
82
 
.. cfunction:: double PyFloat_GetMin(void)
 
82
.. cfunction:: double PyFloat_GetMin()
83
83
 
84
84
   Return the minimum normalized positive float *DBL_MIN* as C :ctype:`double`.
85
85
 
86
86
   .. versionadded:: 2.6
87
87
 
88
88
 
89
 
.. cfunction:: int PyFloat_ClearFreeList(void)
 
89
.. cfunction:: int PyFloat_ClearFreeList()
90
90
 
91
91
   Clear the float free list. Return the number of items that could not
92
92
   be freed.