Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1031082

Browse files
committed
prepended every module with license information
1 parent e91b469 commit 1031082

20 files changed

+80
-0
lines changed

async/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
15
"""Initialize the multi-processing package"""
26

37
#{ Initialization

async/channel.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
15
"""Contains a queue based channel implementation"""
26
from Queue import (
37
Empty,

async/graph.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
15
"""Simplistic implementation of a graph"""
26

37
__all__ = ('Node', 'Graph')

async/mod/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php

async/pool.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
15
"""Implementation of a thread-pool working with channels"""
26
from thread import (
37
WorkerThread,

async/task.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
15
from graph import Node
26
from util import ReadOnly
37
from channel import IteratorReader

async/test/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php

async/test/lib.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
15
"""Module with shared tools for testing"""
26
import unittest
37

async/test/mod/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php

async/test/mod/test_zlib.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
15
"""ZLib module testing"""
26
from async.test.lib import *
37
import async.mod.zlib as zlib

async/test/task.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
15
"""Module containing task implementations useful for testing them"""
26
from async.task import *
37

async/test/test_channel.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
15
"""Channel testing"""
26
from lib import *
37
from async.channel import *

async/test/test_example.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
15
"""Module containing examples from the documentaiton"""
26
from lib import *
37

async/test/test_graph.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
15
"""Channel testing"""
26
from lib import *
37
from async.graph import *

async/test/test_performance.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
15
"""Channel testing"""
26
from lib import *
37
from task import *

async/test/test_pool.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
15
"""Pool testing"""
26
from lib import *
37
from task import *

async/test/test_task.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
15
"""Channel testing"""
26
from lib import *
37
from async.util import *

async/test/test_thread.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
15
# -*- coding: utf-8 -*-
26
""" Test thead classes and functions"""
37
from lib import *

async/thread.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
15
# -*- coding: utf-8 -*-
26
"""Module with threading utilities"""
37
__docformat__ = "restructuredtext"

async/util.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel ([email protected]) and contributors
2+
#
3+
# This module is part of async and is released under
4+
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
15
"""Module with utilities related to async operations"""
26

37
from threading import (

0 commit comments

Comments
 (0)