[Python-Dev] Should Python compile as C++?
Tim Peters
tim.one@comcast.net
Tue, 05 Feb 2002 07:31:16 -0500
Tue, 05 Feb 2002 07:31:16 -0500
- Previous message: [Python-Dev] Should Python compile as C++?
- Next message: [Python-Dev] Should Python compile as C++?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> ... > MSVC has had the same problem for years. What's strange is that in some > cases, MSVC does seem to get it right where in others it fails with an > error -- probably a DLL vs. EXE thing. MS C can't handle cross-DLL references in initializers, because they're truly not "constant" in the way C requires (but C doesn't say anything about DLLs!). C++'s initialization model is much more liberal (and correspondingly more elaborate and expensive), and C++ can handle cross-DLL references in initializers. MSVC plays both according to reasonable readings of the respective languages' rules.
- Previous message: [Python-Dev] Should Python compile as C++?
- Next message: [Python-Dev] Should Python compile as C++?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]