CopyPastor

Detecting plagiarism made easy.

Score: 1; Reported for: String similarity Open both answers

Possible Plagiarism

Reposted on 2025-03-18
by mbenhalima

Original Post

Original - Posted on 2025-03-18
by mbenhalima



            
Present in both answers; Present only in the new answer; Present only in the old answer;

this worked great for me to disable the ssl check temporarily on Windows 10:
`import ssl`
`orig_ssl_context = ssl._create_default_https_context`
`ssl._create_default_https_context = ssl._create_unverified_context`
To re-enable the ssl check:
`ssl._create_default_https_context = orig_ssl_context`
this worked great for me to disable the ssl check temporarily on Windows 10:
`import ssl`
`orig_ssl_context = ssl._create_default_https_context`
`ssl._create_default_https_context = ssl._create_unverified_context`
To re-enable the ssl check:
`ssl._create_default_https_context = orig_ssl_context`

        
Present in both answers; Present only in the new answer; Present only in the old answer;