Skip to content

Commit eb8fe84

Browse files
committed
Move license into LICENSE file
1 parent 0ad4763 commit eb8fe84

File tree

3 files changed

+16
-40
lines changed

3 files changed

+16
-40
lines changed

LICENSE

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Copyright (C) 2005 Graham Ashton <[email protected]>
2+
#
3+
# This module is free software, and you may redistribute it and/or modify
4+
# it under the same terms as Python itself, so long as this copyright message
5+
# and disclaimer are retained in their original form.
6+
#
7+
# IN NO EVENT SHALL THE AUTHOR BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
8+
# SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF
9+
# THIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
10+
# DAMAGE.
11+
#
12+
# THE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT
13+
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
14+
# PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS,
15+
# AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
16+
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.

netsyslog.py

-20
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,3 @@
1-
# Copyright (C) 2005 Graham Ashton <[email protected]>
2-
#
3-
# This module is free software, and you may redistribute it and/or modify
4-
# it under the same terms as Python itself, so long as this copyright message
5-
# and disclaimer are retained in their original form.
6-
#
7-
# IN NO EVENT SHALL THE AUTHOR BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
8-
# SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF
9-
# THIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
10-
# DAMAGE.
11-
#
12-
# THE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT
13-
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
14-
# PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS,
15-
# AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
16-
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
17-
#
18-
# $Id: netsyslog.py,v 1.9 2005/11/22 16:35:40 ashtong Exp $
19-
20-
211
"""netsyslog enables you to construct syslog messages and send them
222
(via UDP) to a remote syslog server directly from Python. You can send
233
log messages that contain the current time, local hostname and calling

netsyslog_test.py

-20
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,3 @@
1-
# Copyright (C) 2005 Graham Ashton <[email protected]>
2-
#
3-
# This module is free software, and you may redistribute it and/or modify
4-
# it under the same terms as Python itself, so long as this copyright message
5-
# and disclaimer are retained in their original form.
6-
#
7-
# IN NO EVENT SHALL THE AUTHOR BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
8-
# SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF
9-
# THIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
10-
# DAMAGE.
11-
#
12-
# THE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT
13-
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
14-
# PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS,
15-
# AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
16-
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
17-
#
18-
# $Id: netsyslog_test.py,v 1.4 2005/07/15 09:49:29 ashtong Exp $
19-
20-
211
import copy
222
import os
233
import socket

0 commit comments

Comments
 (0)