summaryrefslogtreecommitdiff
path: root/slixmpp/test
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2021-02-05 20:46:18 +0100
committermathieui <mathieui@mathieui.net>2021-02-05 20:46:18 +0100
commitbbd351e9c1b442690b34fc7690c1e3e2d4ae7894 (patch)
tree8ee00664aac276d32acb074cc77597a3f016ffd9 /slixmpp/test
parentcff4588499d74e392cab646a46217f069cb1ef01 (diff)
downloadslixmpp-bbd351e9c1b442690b34fc7690c1e3e2d4ae7894.tar.gz
slixmpp-bbd351e9c1b442690b34fc7690c1e3e2d4ae7894.tar.bz2
slixmpp-bbd351e9c1b442690b34fc7690c1e3e2d4ae7894.tar.xz
slixmpp-bbd351e9c1b442690b34fc7690c1e3e2d4ae7894.zip
global: rewrite copyright notice to use comments
Diffstat (limited to 'slixmpp/test')
-rw-r--r--slixmpp/test/__init__.py11
-rw-r--r--slixmpp/test/integration.py11
-rw-r--r--slixmpp/test/livesocket.py11
-rw-r--r--slixmpp/test/mocksocket.py11
-rw-r--r--slixmpp/test/slixtest.py11
5 files changed, 20 insertions, 35 deletions
diff --git a/slixmpp/test/__init__.py b/slixmpp/test/__init__.py
index 0244afe3..d73f2ebe 100644
--- a/slixmpp/test/__init__.py
+++ b/slixmpp/test/__init__.py
@@ -1,11 +1,8 @@
-"""
- Slixmpp: The Slick XMPP Library
- Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
- This file is part of Slixmpp.
-
- See the file LICENSE for copying permission.
-"""
+# Slixmpp: The Slick XMPP Library
+# Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
+# This file is part of Slixmpp.
+# See the file LICENSE for copying permission.
from slixmpp.test.mocksocket import TestSocket, TestTransport
from slixmpp.test.livesocket import TestLiveSocket
from slixmpp.test.slixtest import *
diff --git a/slixmpp/test/integration.py b/slixmpp/test/integration.py
index 7da3f86a..e8093107 100644
--- a/slixmpp/test/integration.py
+++ b/slixmpp/test/integration.py
@@ -1,11 +1,8 @@
-"""
- Slixmpp: The Slick XMPP Library
- Copyright (C) 2020 Mathieu Pasquet
- This file is part of Slixmpp.
-
- See the file LICENSE for copying permission.
-"""
+# Slixmpp: The Slick XMPP Library
+# Copyright (C) 2020 Mathieu Pasquet
+# This file is part of Slixmpp.
+# See the file LICENSE for copying permission.
import asyncio
import os
try:
diff --git a/slixmpp/test/livesocket.py b/slixmpp/test/livesocket.py
index e7deb617..92669a39 100644
--- a/slixmpp/test/livesocket.py
+++ b/slixmpp/test/livesocket.py
@@ -1,11 +1,8 @@
-"""
- Slixmpp: The Slick XMPP Library
- Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
- This file is part of Slixmpp.
-
- See the file LICENSE for copying permission.
-"""
+# Slixmpp: The Slick XMPP Library
+# Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
+# This file is part of Slixmpp.
+# See the file LICENSE for copying permission.
import socket
import threading
from queue import Queue
diff --git a/slixmpp/test/mocksocket.py b/slixmpp/test/mocksocket.py
index 149df29c..c553fcd3 100644
--- a/slixmpp/test/mocksocket.py
+++ b/slixmpp/test/mocksocket.py
@@ -1,11 +1,8 @@
-"""
- Slixmpp: The Slick XMPP Library
- Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
- This file is part of Slixmpp.
-
- See the file LICENSE for copying permission.
-"""
+# Slixmpp: The Slick XMPP Library
+# Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
+# This file is part of Slixmpp.
+# See the file LICENSE for copying permission.
import socket
from queue import Queue
diff --git a/slixmpp/test/slixtest.py b/slixmpp/test/slixtest.py
index fbeff3c7..6ae2cc8f 100644
--- a/slixmpp/test/slixtest.py
+++ b/slixmpp/test/slixtest.py
@@ -1,11 +1,8 @@
-"""
- Slixmpp: The Slick XMPP Library
- Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
- This file is part of Slixmpp.
-
- See the file LICENSE for copying permission.
-"""
+# Slixmpp: The Slick XMPP Library
+# Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
+# This file is part of Slixmpp.
+# See the file LICENSE for copying permission.
import unittest
from queue import Queue
from xml.parsers.expat import ExpatError