Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1 | .. highlightlang:: c |
| 2 | |
| 3 | |
| 4 | .. _utilities: |
| 5 | |
| 6 | ********* |
| 7 | Utilities |
| 8 | ********* |
| 9 | |
| 10 | The functions in this chapter perform various utility tasks, ranging from |
| 11 | helping C code be more portable across platforms, using Python modules from C, |
| 12 | and parsing function arguments and constructing Python values from C values. |
| 13 | |
Georg Brandl | 79e3d55 | 2008-01-19 22:14:27 +0000 | [diff] [blame] | 14 | .. toctree:: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 15 | |
Georg Brandl | 79e3d55 | 2008-01-19 22:14:27 +0000 | [diff] [blame] | 16 | sys.rst |
| 17 | import.rst |
| 18 | marshal.rst |
| 19 | arg.rst |
| 20 | conversion.rst |
| 21 | reflection.rst |