This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: More doc trivia
Type: Stage:
Components: Documentation Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: LambertDW, benjamin.peterson, georg.brandl
Priority: normal Keywords:

Created on 2008-10-20 19:07 by LambertDW, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg75001 - (view) Author: David W. Lambert (LambertDW) Date: 2008-10-20 19:07
http://docs.python.org/dev/3.0/extending/extending.html

Given that the following paragraph tells us that there should be just
one non-static item in the module file,

struct PyModuleDef spammodule = 

should be

static struct PyModuleDef spammodule =


Possibly this persists into the Demos, that's not available to me right now.

Thanks!


(perusal---might wish to write

static void
no_bug


static void
bug

)
msg75005 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-10-20 21:04
Thanks. Fixed in r66983.
History
Date User Action Args
2022-04-11 14:56:40adminsetgithub: 48404
2008-10-20 21:04:57benjamin.petersonsetstatus: open -> closed
nosy: + benjamin.peterson
resolution: fixed
messages: + msg75005
2008-10-20 19:07:12LambertDWcreate