Re: epydoc, variables and encoding

2005-10-06 Thread Michele Petrazzo
Kenneth Pronovici wrote: >> I found a "problem" on epydoc. If I specify an encoding, epydoc not >> find my global variables, and if I remove it, it work well. <-cut-> > > No, it's not normal, and I'm fairly sure it's a bug. <-cut-> > Otherwise, you can try applying the following patch: > <-c

Re: epydoc, variables and encoding

2005-10-05 Thread Kenneth Pronovici
> I found a "problem" on epydoc. If I specify an encoding, epydoc not find > my global variables, and if I remove it, it work well. > > code.py: > > #!/usr/bin/env python > # -*- coding: utf-8 -*- > > MY_VAR = None > > class foo(object): > def __init__(self, foo):

epydoc, variables and encoding

2005-09-21 Thread Michele Petrazzo
I found a "problem" on epydoc. If I specify an encoding, epydoc not find my global variables, and if I remove it, it work well. code.py: #!/usr/bin/env python # -*- coding: utf-8 -*- MY_VAR = None class foo(object): def __init__(self, foo): """ Some text @param foo: Pass me what you want @type