Skip Menu |

This queue is for tickets about the Autodia CPAN distribution.

Report information
The Basics
Id: 78430
Status: new
Priority: 0/
Queue: Autodia

People
Owner: Nobody in particular
Requestors: oc-spam65 [...] laposte.net
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Wrong attribute in Python class
Hello, in the minimal example attached, the generated Dia class has an attribute "setMaterial". This is wrong because there is only one attribute called "material".
Subject: test.py
# Encoding: utf-8 class HalfSpace: material = None # Material object def __init__(self, material=None): """Create a homogeneous half-space of the given material.""" self.setMaterial(material) def setMaterial(self, material): pass