Skip to content

Commit

Permalink
Merge pull request #631 from vertexmc/py37_async
Browse files Browse the repository at this point in the history
Rename synapse.async for python 3.7 compat
  • Loading branch information
vertexmc authored Feb 8, 2018
2 parents beca675 + 8838e7a commit d010700
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion synapse/lib/remcycle.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import tornado.ioloop as t_ioloop
import tornado.httpclient as t_http
# Custom Code
import synapse.async as s_async
import synapse.synasync as s_async
import synapse.common as s_common
import synapse.cortex as s_cortex

Expand Down
2 changes: 1 addition & 1 deletion synapse/lib/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
logger = logging.getLogger(__name__)

import synapse.glob as s_glob
import synapse.async as s_async
import synapse.synasync as s_async
import synapse.common as s_common
import synapse.eventbus as s_eventbus
import synapse.telepath as s_telepath
Expand Down
2 changes: 1 addition & 1 deletion synapse/lib/webapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import tornado.ioloop
import tornado.httpserver

import synapse.async as s_async
import synapse.synasync as s_async
import synapse.common as s_common
import synapse.daemon as s_daemon
import synapse.lib.config as s_config
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion synapse/telepath.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import synapse.glob as s_glob
import synapse.link as s_link
import synapse.async as s_async
import synapse.synasync as s_async
import synapse.common as s_common
import synapse.dyndeps as s_dyndeps
import synapse.eventbus as s_eventbus
Expand Down
2 changes: 1 addition & 1 deletion synapse/tests/test_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import unittest
import threading

import synapse.async as s_async
import synapse.synasync as s_async
import synapse.lib.scope as s_scope
import synapse.lib.threads as s_threads

Expand Down
2 changes: 1 addition & 1 deletion synapse/tests/test_lib_service.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import synapse.async as s_async
import synapse.synasync as s_async
import synapse.daemon as s_daemon
import synapse.telepath as s_telepath

Expand Down
2 changes: 1 addition & 1 deletion synapse/tests/test_telepath.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import collections

import synapse.link as s_link
import synapse.async as s_async
import synapse.synasync as s_async
import synapse.daemon as s_daemon
import synapse.eventbus as s_eventbus
import synapse.telepath as s_telepath
Expand Down

0 comments on commit d010700

Please sign in to comment.