This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author flox
Recipients flox, georg.brandl
Date 2009-12-12.20:46:34
SpamBayes Score 0.012235163
Marked as misclassified No
Message-id <1260650795.58.0.530323401663.issue7487@psf.upfronthosting.co.za>
In-reply-to
Content
The bug seems related to Sphynx on Python3.

These examples are NOT colored::

  class Z:
    def __init__(self):
      pass

::

  class F:
    def __foo__(self):
      pass

::

  class C:
      def method(self):
          pass

  c = C()
  c.method.__func__.whoami = 'my name is c'



While these examples are colored correctly::

  class A:
    pass

  class B:
    def b(self):
      pass

  class C(): pass
History
Date User Action Args
2009-12-12 20:46:35floxsetrecipients: + flox, georg.brandl
2009-12-12 20:46:35floxsetmessageid: <1260650795.58.0.530323401663.issue7487@psf.upfronthosting.co.za>
2009-12-12 20:46:34floxlinkissue7487 messages
2009-12-12 20:46:34floxcreate