I am using the package Anaconda for Sublime Text 3.
I have found out that either the documentation is not alright or I am doing something wrong. For example, in this code:
import ssl
context = ssl.create_default_context()
context.check_hostname = False
context.verify_mode = ssl.CERT_NONE
If I check the documentation of ssl
I don't see there is a function called create_default_context()
.
I also don't know what attributes the object context
I have created has.
When I type context.
the possible atributes (chekc_hostname
, verify_mode
...) doesn't pop up.
Thank you on advance.