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
Expand file treeCollapse file tree

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

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.