Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Apr 14, 2024. It is now read-only.

Commit 1031082

Browse filesBrowse files
committed
prepended every module with license information
1 parent e91b469 commit 1031082
Copy full SHA for 1031082

20 files changed

+80
-0
lines changed

‎async/__init__.py

Copy file name to clipboardExpand all lines: async/__init__.py
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboardExpand all lines: async/channel.py
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboardExpand all lines: async/graph.py
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboard
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboardExpand all lines: async/pool.py
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboardExpand all lines: async/task.py
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboard
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboardExpand all lines: async/test/lib.py
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboard
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboardExpand all lines: async/test/mod/test_zlib.py
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboardExpand all lines: async/test/task.py
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboardExpand all lines: async/test/test_channel.py
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboardExpand all lines: async/test/test_example.py
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboardExpand all lines: async/test/test_graph.py
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboardExpand all lines: async/test/test_performance.py
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboardExpand all lines: async/test/test_pool.py
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboardExpand all lines: async/test/test_task.py
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboardExpand all lines: async/test/test_thread.py
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboardExpand all lines: async/thread.py
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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

Copy file name to clipboardExpand all lines: async/util.py
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.