copyright
This commit is contained in:
parent
efc87e30f4
commit
53f0785345
6
.idea/copyright/bu4.xml
Normal file
6
.idea/copyright/bu4.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<component name="CopyrightManager">
|
||||||
|
<copyright>
|
||||||
|
<option name="notice" value="Copyright (c) PARRRATE T&amp;V &#36;today.year. All rights reserved." />
|
||||||
|
<option name="myName" value="bu4" />
|
||||||
|
</copyright>
|
||||||
|
</component>
|
7
.idea/copyright/profiles_settings.xml
Normal file
7
.idea/copyright/profiles_settings.xml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<component name="CopyrightManager">
|
||||||
|
<settings default="bu4">
|
||||||
|
<module2copyright>
|
||||||
|
<element module="Project Files" copyright="bu4" />
|
||||||
|
</module2copyright>
|
||||||
|
</settings>
|
||||||
|
</component>
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.evaluation.constructs.evalue import EValue
|
from bu4.evaluation.constructs.evalue import EValue
|
||||||
from bu4.evaluation.constructs.proxy import eproxy
|
from bu4.evaluation.constructs.proxy import eproxy
|
||||||
from bu4.evaluation.sync import sync
|
from bu4.evaluation.sync import sync
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.evaluation.targets.avtarget import AVTarget
|
from bu4.evaluation.targets.avtarget import AVTarget
|
||||||
from bu4.evaluation.constructs.evaluable import Evaluable
|
from bu4.evaluation.constructs.evaluable import Evaluable
|
||||||
from bu4.evaluation.constructs.evalue import EValue
|
from bu4.evaluation.constructs.evalue import EValue
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from typing import Mapping
|
from typing import Mapping
|
||||||
|
|
||||||
from bu4.evaluation.av.aftervalue import AfterValue
|
from bu4.evaluation.av.aftervalue import AfterValue
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from typing import Mapping, Iterator
|
from typing import Mapping, Iterator
|
||||||
|
|
||||||
from bu4.evaluation.av.aftervalue import AfterValue
|
from bu4.evaluation.av.aftervalue import AfterValue
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.evaluation.constructs.elinked import ELinked
|
from bu4.evaluation.constructs.elinked import ELinked
|
||||||
from bu4.evaluation.av.envtype import envtype
|
from bu4.evaluation.av.envtype import envtype
|
||||||
from bu4.evaluation.constructs.evaluable import Evaluable
|
from bu4.evaluation.constructs.evaluable import Evaluable
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.evaluation.av.envtype import envtype
|
from bu4.evaluation.av.envtype import envtype
|
||||||
from bu4.evaluation.constructs.evaluable import Evaluable
|
from bu4.evaluation.constructs.evaluable import Evaluable
|
||||||
from bu4.parsing.constructs.linked import Linked
|
from bu4.parsing.constructs.linked import Linked
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.evaluation.constructs.evaluable import Evaluable
|
from bu4.evaluation.constructs.evaluable import Evaluable
|
||||||
from bu4.evaluation.constructs.evalue import EValue
|
from bu4.evaluation.constructs.evalue import EValue
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
__all__ = ('Evaluable',)
|
__all__ = ('Evaluable',)
|
||||||
|
|
||||||
|
|
||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
class Evaluable:
|
class Evaluable:
|
||||||
def next(self) -> 'Evaluable':
|
def next(self) -> 'Evaluable':
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
import abc
|
import abc
|
||||||
|
|
||||||
from bu4.evaluation.constructs.evaluable import Evaluable
|
from bu4.evaluation.constructs.evaluable import Evaluable
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
from bu4.evaluation.av.aftervalue import AfterValue
|
from bu4.evaluation.av.aftervalue import AfterValue
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.evaluation.constructs.evaluable import Evaluable
|
from bu4.evaluation.constructs.evaluable import Evaluable
|
||||||
from bu4.evaluation.constructs.evalue import EValue
|
from bu4.evaluation.constructs.evalue import EValue
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.evaluation.constructs.evalue import EValue
|
from bu4.evaluation.constructs.evalue import EValue
|
||||||
from bu4.evaluation.sync import sync
|
from bu4.evaluation.sync import sync
|
||||||
from bu4.linking.evaluable_from_parsed import evaluable_from_parsed
|
from bu4.linking.evaluable_from_parsed import evaluable_from_parsed
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.evaluation.targets.avtarget import AVTarget
|
from bu4.evaluation.targets.avtarget import AVTarget
|
||||||
from bu4.evaluation.constructs.elinked import ELinked
|
from bu4.evaluation.constructs.elinked import ELinked
|
||||||
from bu4.evaluation.av.envtype import envtype
|
from bu4.evaluation.av.envtype import envtype
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.evaluation.av.aftervalue import AfterValue
|
from bu4.evaluation.av.aftervalue import AfterValue
|
||||||
from bu4.evaluation.targets.avtarget import AVTarget
|
from bu4.evaluation.targets.avtarget import AVTarget
|
||||||
from bu4.evaluation.constructs.evaluable import Evaluable
|
from bu4.evaluation.constructs.evaluable import Evaluable
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.evaluation.constructs.evaluable import Evaluable
|
from bu4.evaluation.constructs.evaluable import Evaluable
|
||||||
from bu4.evaluation.constructs.evalue import EValue
|
from bu4.evaluation.constructs.evalue import EValue
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.evaluation.constructs.elinked import ELinked
|
from bu4.evaluation.constructs.elinked import ELinked
|
||||||
from bu4.evaluation.av.envtype import envtype
|
from bu4.evaluation.av.envtype import envtype
|
||||||
from bu4.linking.prepare import prepare
|
from bu4.linking.prepare import prepare
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.linking.states.afterlinking import AfterLinking
|
from bu4.linking.states.afterlinking import AfterLinking
|
||||||
from bu4.linking.targets.alchain import ALChain
|
from bu4.linking.targets.alchain import ALChain
|
||||||
from bu4.linking.states.linkingfinished import LinkingFinished
|
from bu4.linking.states.linkingfinished import LinkingFinished
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.linking.targets.altarget import ALTarget
|
from bu4.linking.targets.altarget import ALTarget
|
||||||
|
|
||||||
__all__ = ('AfterLinking',)
|
__all__ = ('AfterLinking',)
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.linking.states.linkingstate import LinkingState
|
from bu4.linking.states.linkingstate import LinkingState
|
||||||
from bu4.parsing.constructs.linked import Linked
|
from bu4.parsing.constructs.linked import Linked
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.linking.states.linkingstate import LinkingState
|
from bu4.linking.states.linkingstate import LinkingState
|
||||||
from bu4.parsing.constructs.linked import Parsed
|
from bu4.parsing.constructs.linked import Parsed
|
||||||
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
__all__ = ('LinkingState',)
|
__all__ = ('LinkingState',)
|
||||||
|
|
||||||
|
|
||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
class LinkingState:
|
class LinkingState:
|
||||||
pass
|
pass
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.linking.states.afterlinking import AfterLinking
|
from bu4.linking.states.afterlinking import AfterLinking
|
||||||
from bu4.linking.targets.altarget import ALTarget
|
from bu4.linking.targets.altarget import ALTarget
|
||||||
from bu4.linking.states.linkingstate import LinkingState
|
from bu4.linking.states.linkingstate import LinkingState
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from typing import Callable
|
from typing import Callable
|
||||||
|
|
||||||
from bu4.linking.targets.altarget import ALTarget
|
from bu4.linking.targets.altarget import ALTarget
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.linking.states.linkingstate import LinkingState
|
from bu4.linking.states.linkingstate import LinkingState
|
||||||
from bu4.parsing.constructs.linked import Linked
|
from bu4.parsing.constructs.linked import Linked
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
__all__ = ('AbstractParser',)
|
__all__ = ('AbstractParser',)
|
||||||
|
|
||||||
|
|
||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
class AbstractParser:
|
class AbstractParser:
|
||||||
def read(self) -> int:
|
def read(self) -> int:
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
CODE_NULL = 0
|
CODE_NULL = 0
|
||||||
CODE_CALL = 1
|
CODE_CALL = 1
|
||||||
CODE_MAKE = 2
|
CODE_MAKE = 2
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.evaluation.av.aftervalue import AfterValue
|
from bu4.evaluation.av.aftervalue import AfterValue
|
||||||
from bu4.evaluation.av.envtype import envtype
|
from bu4.evaluation.av.envtype import envtype
|
||||||
from bu4.linking.states.linkingstate import LinkingState
|
from bu4.linking.states.linkingstate import LinkingState
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.evaluation.av.envtype import envtype
|
from bu4.evaluation.av.envtype import envtype
|
||||||
from bu4.evaluation.constructs.evaluable import Evaluable
|
from bu4.evaluation.constructs.evaluable import Evaluable
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.evaluation.av.envtype import envtype
|
from bu4.evaluation.av.envtype import envtype
|
||||||
from bu4.linking.states.linkingstate import LinkingState
|
from bu4.linking.states.linkingstate import LinkingState
|
||||||
from bu4.parsing.codes import CODE_MAKE, CODE_NULL
|
from bu4.parsing.codes import CODE_MAKE, CODE_NULL
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.evaluation.av.envtype import envtype
|
from bu4.evaluation.av.envtype import envtype
|
||||||
from bu4.linking.states.linkingstate import LinkingState
|
from bu4.linking.states.linkingstate import LinkingState
|
||||||
from bu4.parsing.codes import CODE_NAME, CODE_NULL
|
from bu4.parsing.codes import CODE_NAME, CODE_NULL
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.evaluation.constructs.enull import ENull
|
from bu4.evaluation.constructs.enull import ENull
|
||||||
from bu4.evaluation.av.envtype import envtype
|
from bu4.evaluation.av.envtype import envtype
|
||||||
from bu4.linking.states.linkingstate import LinkingState
|
from bu4.linking.states.linkingstate import LinkingState
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from io import BytesIO
|
from io import BytesIO
|
||||||
|
|
||||||
from bu4.parsing.abstractparser import AbstractParser
|
from bu4.parsing.abstractparser import AbstractParser
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
__all__ = ('ParseState',)
|
__all__ = ('ParseState',)
|
||||||
|
|
||||||
|
|
||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
class ParseState:
|
class ParseState:
|
||||||
pass
|
pass
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.parsing.states.parsestate import ParseState
|
from bu4.parsing.states.parsestate import ParseState
|
||||||
from bu4.parsing.targets.pstarget import PSTarget
|
from bu4.parsing.targets.pstarget import PSTarget
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.parsing.constructs.lcall import PCall
|
from bu4.parsing.constructs.lcall import PCall
|
||||||
from bu4.parsing.states.psafter import PSAfter
|
from bu4.parsing.states.psafter import PSAfter
|
||||||
from bu4.parsing.states.psfinal import PSFinal
|
from bu4.parsing.states.psfinal import PSFinal
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.parsing.constructs.linked import Parsed
|
from bu4.parsing.constructs.linked import Parsed
|
||||||
from bu4.parsing.states.parsestate import ParseState
|
from bu4.parsing.states.parsestate import ParseState
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.parsing.states.parsestate import ParseState
|
from bu4.parsing.states.parsestate import ParseState
|
||||||
|
|
||||||
__all__ = ('PSRead',)
|
__all__ = ('PSRead',)
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.parsing.constructs.linked import Parsed
|
from bu4.parsing.constructs.linked import Parsed
|
||||||
from bu4.parsing.states.parsestate import ParseState
|
from bu4.parsing.states.parsestate import ParseState
|
||||||
from bu4.parsing.states.psafter import PSAfter
|
from bu4.parsing.states.psafter import PSAfter
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.parsing.abstractparser import AbstractParser
|
from bu4.parsing.abstractparser import AbstractParser
|
||||||
from bu4.parsing.constructs.linked import Parsed
|
from bu4.parsing.constructs.linked import Parsed
|
||||||
from bu4.parsing.states.parsestate import ParseState
|
from bu4.parsing.states.parsestate import ParseState
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from typing import Callable
|
from typing import Callable
|
||||||
|
|
||||||
from bu4.parsing.constructs.linked import Parsed
|
from bu4.parsing.constructs.linked import Parsed
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.parsing.constructs.linked import Parsed
|
from bu4.parsing.constructs.linked import Parsed
|
||||||
from bu4.parsing.states.parsestate import ParseState
|
from bu4.parsing.states.parsestate import ParseState
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.parsing.constructs.linked import Parsed
|
from bu4.parsing.constructs.linked import Parsed
|
||||||
from bu4.parsing.parser import Parser
|
from bu4.parsing.parser import Parser
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
import os
|
import os
|
||||||
from io import StringIO
|
from io import StringIO
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from io import BytesIO
|
from io import BytesIO
|
||||||
|
|
||||||
from bu4.parsing.codes import *
|
from bu4.parsing.codes import *
|
||||||
|
2
main.py
2
main.py
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
from bu4.common_interface import with_common_interface
|
from bu4.common_interface import with_common_interface
|
||||||
from bu4.evaluation.constructs.proxy import antiproxy, eproxy
|
from bu4.evaluation.constructs.proxy import antiproxy, eproxy
|
||||||
from bu4.evaluation.sync import sync
|
from bu4.evaluation.sync import sync
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
||||||
|
|
||||||
import time
|
import time
|
||||||
|
|
||||||
__all__ = ('TimeSample',)
|
__all__ = ('TimeSample',)
|
||||||
|
Loading…
Reference in New Issue
Block a user