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

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


http://hg.python.org/cpython/rev/fe444f324756
changeset:   85234:fe444f324756
parent:      85232:4cc308acd26d
parent:      85233:b352a5cb60b6
user:        Christian Heimes <christian at cheimes.de>
date:        Sat Aug 17 17:19:03 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
@@ -810,7 +810,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