diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2015-07-06 15:31:29 -0700 |
---|---|---|
committer | Joshua Harlow <jxharlow@godaddy.com> | 2016-05-10 15:26:57 -0700 |
commit | afbfe77a7f7bad87c3e95b4f0c94cab84258a5bb (patch) | |
tree | 2f27418e05a99cbfd2bad76977152d07067d37f8 /doc | |
parent | 3321b22ca81bd0e1d8923abc62db014d07fed9ce (diff) | |
download | taskflow-afbfe77a7f7bad87c3e95b4f0c94cab84258a5bb.tar.gz |
Remove deprecated things for 2.0 release
Change-Id: Id9adbc50bd51adc77ce88f698ad0ea2ee63fc5e2
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/notifications.rst | 2 | ||||
-rw-r--r-- | doc/source/utils.rst | 5 |
2 files changed, 1 insertions, 6 deletions
diff --git a/doc/source/notifications.rst b/doc/source/notifications.rst index 56e92c7..f1d9059 100644 --- a/doc/source/notifications.rst +++ b/doc/source/notifications.rst @@ -93,7 +93,7 @@ A basic example is: >>> flo.add(CatTalk(), DogTalk(provides="dog")) <taskflow.patterns.linear_flow.Flow object at 0x...> >>> eng = engines.load(flo, store={'meow': 'meow', 'woof': 'woof'}) - >>> eng.task_notifier.register(ANY, task_transition) + >>> eng.atom_notifier.register(ANY, task_transition) >>> eng.run() Task 'CatTalk' transition to state RUNNING meow diff --git a/doc/source/utils.rst b/doc/source/utils.rst index 985f26d..3c8c9b1 100644 --- a/doc/source/utils.rst +++ b/doc/source/utils.rst @@ -18,11 +18,6 @@ Banner .. automodule:: taskflow.utils.banner -Deprecation -~~~~~~~~~~~ - -.. automodule:: taskflow.utils.deprecation - Eventlet ~~~~~~~~ |