[Python-checkins] cpython (2.7): Issue #18768: coding style nitpick. Thanks to Vajrasky Kok

christian.heimes python-checkins at python.org
Sat Aug 17 17:19:57 CEST 2013


http://hg.python.org/cpython/rev/a8787a6fa107
changeset:   85235:a8787a6fa107
branch:      2.7
parent:      85230:c75b8d5fa016
user:        Christian Heimes <christian at cheimes.de>
date:        Sat Aug 17 17:18:56 2013 +0200
summary:
  Issue #18768: coding style nitpick. Thanks to Vajrasky Kok

files:
  Modules/_ssl.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/_ssl.c b/Modules/_ssl.c
--- a/Modules/_ssl.c
+++ b/Modules/_ssl.c
@@ -743,7 +743,7 @@
             ASN1_STRING *as = NULL;
 
             name = sk_GENERAL_NAME_value(names, j);
-            gntype = name-> type;
+            gntype = name->type;
             switch (gntype) {
             case GEN_DIRNAME:
                 /* we special-case DirName as a tuple of

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list