Movatterモバイル変換


[0]ホーム

URL:


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

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

Commit1031082

Browse files
committed
prepended every module with license information
1 parente91b469 commit1031082

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 (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

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 (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
fromQueueimport (
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 (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

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 (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

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 (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
fromthreadimport (
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 (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
fromgraphimportNode
26
fromutilimportReadOnly
37
fromchannelimportIteratorReader

‎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 (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

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 (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
importunittest
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 (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

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 (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
fromasync.test.libimport*
37
importasync.mod.zlibaszlib

‎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 (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
fromasync.taskimport*
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 (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
fromlibimport*
37
fromasync.channelimport*

‎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 (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
fromlibimport*
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 (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
fromlibimport*
37
fromasync.graphimport*

‎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 (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
fromlibimport*
37
fromtaskimport*

‎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 (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
fromlibimport*
37
fromtaskimport*

‎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 (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
fromlibimport*
37
fromasync.utilimport*

‎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 (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
fromlibimport*

‎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 (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

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 (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
fromthreadingimport (

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp