Skip to main content

__qualname__ emulation for older Python versions

Project description

Python module to emulate the __qualname__ attribute for classes and methods (Python 3.3+) in older Python versions. See PEP 3155 for details.

https://travis-ci.org/wbolster/qualname.svg?branch=master Downloads Latest Version Supported Python versions Development Status License

Installation

pip install qualname

Usage

Assume these definitions:

class C:
    def f():
        pass

    class D:
        def g():
            pass

In Python 3.3+, classes have a __qualname__ property:

>>> C.__qualname__
'C'
>>> C.f.__qualname__
'C.f'
>>> C.D.__qualname__
'C.D'
>>> C.D.g.__qualname__
'C.D.g'

Unfortunately, Python 2 and early Python 3 versions do not have an (obvious) equivalent. qualname to the rescue:

from qualname import qualname

>>> qualname(C)
'C'
>>> qualname(C.f)
'C.f'
>>> qualname(C.D)
'C.D'
>>> qualname(C.D.g)
'C.D.g'

Victory!

How does it work?

Glad you ask.

This module uses source code inspection to figure out how (nested) classes and functions are defined in order to determine the qualified names for them. That means parsing the source file, and traversing the AST (abstract syntax tree). This sounds very hacky, and it is, but the Python interpreter itself does not have the necessary information, so this justifies extreme measures.

Now that you know how it works, you’ll also understand that this module only works when the source file is available. Fortunately this is the case in most circumstances.

License

BSD.

Feedback? Issues?

https://github.com/wbolster/qualname

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qualname-0.1.0.tar.gz (3.1 kB view details)

Uploaded Source

File details

Details for the file qualname-0.1.0.tar.gz.

File metadata

  • Download URL: qualname-0.1.0.tar.gz
  • Upload date:
  • Size: 3.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for qualname-0.1.0.tar.gz
Algorithm Hash digest
SHA256 277cf6aa4b2ad36beed1153cfa7bf521b210d54fbecb3d8eea0c5679cecc9ed8
MD5 fdc9b7a3174000908fab184a295f9622
BLAKE2b-256 d9558701163104e69773bb3c9371094372b1f9057fd5fbf33ca8d3236a63a9c1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page