Issue 3238: Python: Mapping of enumerators (python-ftf) Source: Humboldt-Universitaet (Mr. Martin von Loewis, loewis@informatik.hu-berlin.de) Nature: Uncategorized Issue Severity: Summary: I also think that there is an error in the enum mapping section, which says that module M { interface O { enum Farbe {rot, gruen, blau}; }; }; maps to M.O_rot, M.O_gruen and M.O_blau. It makes much more sense for them to map to M.O.rot, etc. Resolution: The example needs to be corrected Revised Text: Replace O_rot, O_gruen, O_blau with O.rot, O.gruen, O.blau, respectively Actions taken: January 19, 2000: received issue October 10, 2000: closed issue Discussion: End of Annotations:===== Date: Wed, 19 Jan 2000 17:10:17 +0100 Message-Id: <200001191610.RAA26009@pandora> From: Martin von Loewis To: issues@omg.org Subject: Python: Mapping of enumerators User-Agent: SEMI/1.13.3 (Komaiko) FLIM/1.12.5 (Hirahata) Emacs/20.4 (sparc-sun-solaris2.5.1) MULE/4.0 (HANANOEN) MIME-Version: 1.0 (generated by SEMI 1.13.3 - "Komaiko") Content-Type: text/plain; charset=US-ASCII X-UIDL: 2!U!!T%od9^"f!!)\=e9 [submitted by Duncan Grisby ] I also think that there is an error in the enum mapping section, which says that module M { interface O { enum Farbe {rot, gruen, blau}; }; }; maps to M.O_rot, M.O_gruen and M.O_blau. It makes much more sense for them to map to M.O.rot, etc. Regards, Martin