[Jython-checkins] jython: Remove debugging print of path to CA file

jim.baker jython-checkins at python.org
Tue Oct 27 16:16:25 EDT 2015


https://hg.python.org/jython/rev/f18bea7d29dd
changeset:   7769:f18bea7d29dd
user:        Jim Baker <jim.baker at rackspace.com>
date:        Tue Oct 27 14:14:50 2015 -0600
summary:
  Remove debugging print of path to CA file

files:
  Lib/ssl.py |  1 -
  1 files changed, 0 insertions(+), 1 deletions(-)


diff --git a/Lib/ssl.py b/Lib/ssl.py
--- a/Lib/ssl.py
+++ b/Lib/ssl.py
@@ -501,7 +501,6 @@
         pass
 
     def load_verify_locations(self, cafile=None, capath=None, cadata=None):
-        print cafile
         if cafile is not None:
             with open(cafile) as f:
                 self._load_certificates(f)

-- 
Repository URL: https://hg.python.org/jython


More information about the Jython-checkins mailing list