]> granicus.if.org Git - python/commitdiff
bpo-33832: Add "magic method" glossary entry (GH-7630)
authorAndre Delfino <adelfino@gmail.com>
Wed, 27 Mar 2019 01:21:27 +0000 (22:21 -0300)
committerÉric Araujo <merwok@netwok.org>
Wed, 27 Mar 2019 01:21:27 +0000 (21:21 -0400)
Doc/glossary.rst
Misc/NEWS.d/next/Documentation/2018-06-15-15-57-37.bpo-33832.xBFhKw.rst [new file with mode: 0644]

index 31cdba2444bef10f9bb838ed6533922d11459c01..5810a6b7997804806ff9f05840526fa04ceabd33 100644 (file)
@@ -663,6 +663,11 @@ Glossary
       :term:`finder`. See :pep:`302` for details and
       :class:`importlib.abc.Loader` for an :term:`abstract base class`.
 
+   magic method
+      .. index:: pair: magic; method
+
+      An informal synonym for :term:`special method`.
+
    mapping
       A container object that supports arbitrary key lookups and implements the
       methods specified in the :class:`~collections.abc.Mapping` or
@@ -1004,6 +1009,8 @@ Glossary
       (subscript) notation uses :class:`slice` objects internally.
 
    special method
+      .. index:: pair: special; method
+
       A method that is called implicitly by Python to execute a certain
       operation on a type, such as addition.  Such methods have names starting
       and ending with double underscores.  Special methods are documented in
diff --git a/Misc/NEWS.d/next/Documentation/2018-06-15-15-57-37.bpo-33832.xBFhKw.rst b/Misc/NEWS.d/next/Documentation/2018-06-15-15-57-37.bpo-33832.xBFhKw.rst
new file mode 100644 (file)
index 0000000..3d1c63a
--- /dev/null
@@ -0,0 +1 @@
+Add glossary entry for 'magic method'.