@@ -230,16 +230,18 @@ The CPython :doc:`Extending and Embedding <python:extending/index>`
230
230
guide includes an introduction to writing a
231
231
:doc: `custom extension module in C <python:extending/extending >`.
232
232
233
- ::
233
+ ..
234
234
235
- mention the stable ABI (3.2+, link to the CPython C API docs)
236
- mention the module lifecycle
237
- mention the challenges of shared static state and subinterpreters
238
- mention the implications of the GIL for extension modules
239
- mention the memory allocation APIs in 3.4+
235
+ FIXME
236
+
237
+ * mention the stable ABI (3.2+, link to the CPython C API docs)
238
+ * mention the module lifecycle
239
+ * mention the challenges of shared static state and subinterpreters
240
+ * mention the implications of the GIL for extension modules
241
+ * mention the memory allocation APIs in 3.4+
240
242
241
- mention again that all this is one of the reasons why you probably
242
- *don't* want to handcode your extension modules :)
243
+ * mention again that all this is one of the reasons why you probably * don't *
244
+ want to handcode your extension modules :)
243
245
244
246
245
247
Building binary extensions
@@ -311,16 +313,16 @@ Publishing binary extensions
311
313
For interim guidance on this topic, see the discussion in
312
314
:issue: `this issue <284> `.
313
315
314
- ::
316
+ ..
315
317
316
318
FIXME
317
319
318
- cover publishing as wheel files on PyPI or a custom index server
319
- cover creation of Windows and macOS installers
320
- cover weak linking
321
- mention the fact that Linux distros have a requirement to build from
322
- source in their own build systems, so binary-only releases are strongly
323
- discouraged
320
+ * cover publishing as wheel files on PyPI or a custom index server
321
+ * cover creation of Windows and macOS installers
322
+ * cover weak linking
323
+ * mention the fact that Linux distros have a requirement to build from
324
+ source in their own build systems, so binary-only releases are strongly
325
+ discouraged
324
326
325
327
326
328
Additional resources
0 commit comments