Skip to content

Commit d21c5df

Browse files
committed
Removed copyright headers from examples
This makes the documentation less cluttered (these examples are included in the docs).
1 parent 332d7bc commit d21c5df

File tree

4 files changed

+3
-14
lines changed

4 files changed

+3
-14
lines changed

examples/example.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
# Copyright (c) 2014, Menno Smits
2-
# Released subject to the New BSD License
3-
# Please see http://en.wikipedia.org/wiki/BSD_licenses
4-
51
from imapclient import IMAPClient
62

73
HOST = 'imap.host.com'

examples/idle_example.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Open a connection in IDLE mode and wait for notifications from the server
1+
# Open a connection in IDLE mode and wait for notifications from the
2+
# server.
23

34
from imapclient import IMAPClient
45

examples/tls_cacert.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
# Copyright (c) 2015, Menno Smits
2-
# Released subject to the New BSD License
3-
# Please see http://en.wikipedia.org/wiki/BSD_licenses
4-
#
51
# Establish a secure connection to a server that does not have a certificate
6-
# signed by a trusted authority.
2+
# signed by a trusted certificate authority (CA).
73

84
import ssl
95

examples/tls_no_checks.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
# Copyright (c) 2015, Menno Smits
2-
# Released subject to the New BSD License
3-
# Please see http://en.wikipedia.org/wiki/BSD_licenses
4-
#
51
# Establish an encrypted connection to a server without checking its
62
# certificate. This setup is insecure, DO NOT USE to connect to servers
73
# over the Internet.

0 commit comments

Comments
 (0)