Skip to content

Commit

Permalink
type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
Cuizi7 committed Nov 18, 2020
1 parent 2c14297 commit 166cc88
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions rqalpha/core/execution_context.py
Expand Up @@ -4,17 +4,22 @@
# 除非遵守当前许可,否则不得使用本软件。
#
# * 非商业用途(非商业用途指个人出于非商业目的使用本软件,或者高校、研究所等非营利机构出于教育、科研等目的使用本软件):
# 遵守 Apache License 2.0(下称“Apache 2.0 许可”),您可以在以下位置获得 Apache 2.0 许可的副本:http://www.apache.org/licenses/LICENSE-2.0。
# 遵守 Apache License 2.0(下称“Apache 2.0 许可”),
# 您可以在以下位置获得 Apache 2.0 许可的副本:http://www.apache.org/licenses/LICENSE-2.0。
# 除非法律有要求或以书面形式达成协议,否则本软件分发时需保持当前许可“原样”不变,且不得附加任何条件。
#
# * 商业用途(商业用途指个人出于任何商业目的使用本软件,或者法人或其他组织出于任何目的使用本软件):
# 未经米筐科技授权,任何个人不得出于任何商业目的使用本软件(包括但不限于向第三方提供、销售、出租、出借、转让本软件、本软件的衍生产品、引用或借鉴了本软件功能或源代码的产品或服务),任何法人或其他组织不得出于任何目的使用本软件,否则米筐科技有权追究相应的知识产权侵权责任。
# 未经米筐科技授权,任何个人不得出于任何商业目的使用本软件(包括但不限于向第三方提供、销售、出租、出借、转让本软件、
# 本软件的衍生产品、引用或借鉴了本软件功能或源代码的产品或服务),任何法人或其他组织不得出于任何目的使用本软件,
# 否则米筐科技有权追究相应的知识产权侵权责任。
# 在此前提下,对本软件的使用同样需要遵守 Apache 2.0 许可,Apache 2.0 许可与本许可冲突之处,以本许可为准。
# 详细的授权流程,请联系 public@ricequant.com 获取。

from typing import Callable
from functools import wraps
from contextlib import contextmanager

from rqalpha.const import EXECUTION_PHASE
from rqalpha.utils.i18n import gettext as _
from rqalpha.utils.exception import CustomException, patch_user_exc
from rqalpha.environment import Environment
Expand Down Expand Up @@ -43,6 +48,7 @@ def pushed(self, obj):

@property
def top(self):
# type: () -> EXECUTION_PHASE
try:
return self.stack[-1]
except IndexError:
Expand All @@ -53,6 +59,7 @@ class ExecutionContext(object):
stack = ContextStack()

def __init__(self, phase):
# type: (EXECUTION_PHASE) -> None
self.phase = phase

def _push(self):
Expand Down Expand Up @@ -94,6 +101,7 @@ def __exit__(self, exc_type, exc_val, exc_tb):

@classmethod
def enforce_phase(cls, *phases):
# type: (*EXECUTION_PHASE) -> Callable
def decorator(func):
@wraps(func)
def wrapper(*args, **kwargs):
Expand All @@ -107,4 +115,5 @@ def wrapper(*args, **kwargs):

@classmethod
def phase(cls):
# type: () -> EXECUTION_PHASE
return cls.stack.top.phase

0 comments on commit 166cc88

Please sign in to comment.