Skip to content

Commit

Permalink
FIX...
Browse files Browse the repository at this point in the history
Also: actors can now be stopped and created again.
  • Loading branch information
Daniel Barcelona committed Oct 25, 2016
1 parent 7639835 commit 915a924
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ or::

pip install pyactor

Check that works executing the examples that you can find by cloning `the repository <http://www.gevent.org/intro.html#installation-and-requirements>`_::
Check that works executing the examples that you can find by cloning `the repository <https://github.com/pedrotgn/pyactor>`_::

cd examples
python sample1.py
Expand Down Expand Up @@ -124,6 +124,6 @@ Tutorial
========
PyActor has many examples and a tutorial explaining all its functionalities.
This examples can be found in the ``'pyactor/examples'`` directory of the project
(`github <http://www.gevent.org/intro.html#installation-and-requirements>`_).
(`github <https://github.com/pedrotgn/pyactor`_).
They are also explained in the documentation as a tutorial, hosted at
readthedocs.org which you can find above.
2 changes: 1 addition & 1 deletion pyactor/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def shutdown(self):

def stop_actor(self, aid):
url = '%s://%s/%s' % (self.transport, self.host_url.netloc, aid)
if url! = self.url:
if url != self.url:
actor = self.actors[url]
Proxy(actor).stop()
actor.thread.join()
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='pyactor',
version='0.9.2',
version='0.9.3',
author='Pedro Garcia Lopez & Daniel Barcelona Pons',
author_email='pedro.garcia@urv.cat, daniel.barcelona@urv.cat',
packages=find_packages(),
Expand All @@ -17,8 +17,8 @@
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',

'License :: OSI Approved :: GNU Lesser General Public\
License v3 (LGPLv3)',
'License :: OSI Approved :: GNU Lesser General Public' +
' License v3 (LGPLv3)',

'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
Expand Down

0 comments on commit 915a924

Please sign in to comment.