change malformed comments in kicad.i

This commit is contained in:
jean-pierre charras 2014-10-22 13:16:20 +02:00
parent 3c7113107a
commit 7b13463302
1 changed files with 3 additions and 7 deletions

View File

@ -132,16 +132,12 @@
%pythoncode %pythoncode
{ {
/* # Get the char buffer of the UTF8 string
* Get the char buffer of the UTF8 string
*/
def GetChars(self): def GetChars(self):
return self.Cast_to_CChar() return self.Cast_to_CChar()
/* # Convert the UTF8 string to a python string
* Convert the UTF8 string to a python string # Same as GetChars(), but more easy to use in print command
* Same as GetChars(), but more easy to use in print command
*/
def __str__(self): def __str__(self):
return self.GetChars() return self.GetChars()