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: Undeclared symbol in _struct.c
Type: compile error Stage:
Components: Extension Modules Versions: Python 3.3
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: inducer, mark.dickinson
Priority: normal Keywords:

Created on 2013-04-10 14:54 by inducer, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (4)
msg186501 - (view) Author: Andreas Kloeckner (inducer) Date: 2013-04-10 14:54
This line in the "_struct" module references a "PyStructType" that isn't declared anywhere. This is only apparent when the file is compiled without -DNDEBUG.

http://hg.python.org/cpython/file/1410b7790de6/Modules/_struct.c#l43
msg186503 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2013-04-10 15:01
Isn't it declared on line 12?
msg186510 - (view) Author: Andreas Kloeckner (inducer) Date: 2013-04-10 15:41
Whoops. I'm an idiot. Forget I said anything.
msg186511 - (view) Author: Andreas Kloeckner (inducer) Date: 2013-04-10 15:47
(Forgot to say: sorry.)
History
Date User Action Args
2022-04-11 14:57:44adminsetgithub: 61887
2013-04-10 16:01:18brett.cannonsetresolution: not a bug
2013-04-10 15:47:29inducersetmessages: + msg186511
2013-04-10 15:41:40inducersetstatus: open -> closed

messages: + msg186510
2013-04-10 15:01:26mark.dickinsonsetnosy: + mark.dickinson
messages: + msg186503
2013-04-10 14:54:23inducercreate