From fdc405df22bc47d8531a5ea0a31219eef2e1f29c Mon Sep 17 00:00:00 2001 From: Bruce Pucci Date: Thu, 19 Jan 2017 00:33:15 -0500 Subject: [PATCH] Update pep-3155.txt (#183) --- pep-3155.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-3155.txt b/pep-3155.txt index b312554309f..2161d0838f7 100644 --- a/pep-3155.txt +++ b/pep-3155.txt @@ -62,7 +62,7 @@ Proposal This PEP proposes the addition of a ``__qualname__`` attribute to functions and classes. For top-level functions and classes, the ``__qualname__`` attribute is equal to the ``__name__`` attribute. For -nested classed, methods, and nested functions, the ``__qualname__`` +nested classes, methods, and nested functions, the ``__qualname__`` attribute contains a dotted path leading to the object from the module top-level. A function's local namespace is represented in that dotted path by a component named ````.