The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Python Glossary: terms starting with letter Q
By Guest on 13th November 2022 09:31:23 PM | Syntax: PYTHON | Views: 207



New Paste New paste | Download Paste Download | Toggle Line Numbers Show/Hide line no. | Copy Paste Copy text to clipboard
  1. Glossary - Q
  2. ********
  3.  
  4. qualified name
  5.    A dotted name showing the "path" from a module's global scope to a
  6.   class, function or method defined in that module, as defined in
  7.   **PEP 3155**.  For top-level functions and classes, the qualified
  8.   name is the same as the object's name:
  9.  
  10.       >>> class C:
  11.       ...     class D:
  12.       ...         def meth(self):
  13.       ...             pass
  14.       ...
  15.       >>> C.__qualname__
  16.       'C'
  17.       >>> C.D.__qualname__
  18.       'C.D'
  19.       >>> C.D.meth.__qualname__
  20.       'C.D.meth'
  21.  
  22.    When used to refer to modules, the *fully qualified name* means the
  23.    entire dotted path to the module, including any parent packages,
  24.    e.g. "email.mime.text":
  25.  
  26.       >>> import email.mime.text
  27.       >>> email.mime.text.__name__
  28.       'email.mime.text'
















Python software and documentation are licensed under the PSF License Agreement.
Starting with Python 3.8.6, examples, recipes, and other code in the documentation are dual licensed under the PSF License Agreement and the Zero-Clause BSD license.
Some software incorporated into Python is under different licenses. The licenses are listed with code falling under that license. See Licenses and Acknowledgements for Incorporated Software for an incomplete list of these licenses.

Python and it's documentation is:
Copyright © 2001-2022 Python Software Foundation. All rights reserved.
Copyright © 2000 BeOpen.com. All rights reserved.
Copyright © 1995-2000 Corporation for National Research Initiatives. All rights reserved.
Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.

See History and License for complete license and permissions information:
https://docs.python.org/3/license.html#psf-license
  • Recent Pastes