copyright

This commit is contained in:
AF 2021-07-24 15:10:11 +03:00
parent efc87e30f4
commit 53f0785345
49 changed files with 106 additions and 0 deletions

6
.idea/copyright/bu4.xml Normal file
View File

@ -0,0 +1,6 @@
<component name="CopyrightManager">
<copyright>
<option name="notice" value="Copyright (c) PARRRATE T&amp;amp;V &amp;#36;today.year. All rights reserved." />
<option name="myName" value="bu4" />
</copyright>
</component>

View File

@ -0,0 +1,7 @@
<component name="CopyrightManager">
<settings default="bu4">
<module2copyright>
<element module="Project Files" copyright="bu4" />
</module2copyright>
</settings>
</component>

1
LICENSE Normal file
View File

@ -0,0 +1 @@
Copyright (c) PARRRATE T&V 2021. All rights reserved.

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.evaluation.constructs.evalue import EValue
from bu4.evaluation.constructs.proxy import eproxy
from bu4.evaluation.sync import sync

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.evaluation.targets.avtarget import AVTarget
from bu4.evaluation.constructs.evaluable import Evaluable
from bu4.evaluation.constructs.evalue import EValue

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from typing import Mapping
from bu4.evaluation.av.aftervalue import AfterValue

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from typing import Mapping, Iterator
from bu4.evaluation.av.aftervalue import AfterValue

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.evaluation.constructs.elinked import ELinked
from bu4.evaluation.av.envtype import envtype
from bu4.evaluation.constructs.evaluable import Evaluable

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.evaluation.av.envtype import envtype
from bu4.evaluation.constructs.evaluable import Evaluable
from bu4.parsing.constructs.linked import Linked

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.evaluation.constructs.evaluable import Evaluable
from bu4.evaluation.constructs.evalue import EValue

View File

@ -1,6 +1,8 @@
__all__ = ('Evaluable',)
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
class Evaluable:
def next(self) -> 'Evaluable':
raise NotImplementedError

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
import abc
from bu4.evaluation.constructs.evaluable import Evaluable

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from typing import Any
from bu4.evaluation.av.aftervalue import AfterValue

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.evaluation.constructs.evaluable import Evaluable
from bu4.evaluation.constructs.evalue import EValue

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.evaluation.constructs.evalue import EValue
from bu4.evaluation.sync import sync
from bu4.linking.evaluable_from_parsed import evaluable_from_parsed

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.evaluation.targets.avtarget import AVTarget
from bu4.evaluation.constructs.elinked import ELinked
from bu4.evaluation.av.envtype import envtype

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.evaluation.av.aftervalue import AfterValue
from bu4.evaluation.targets.avtarget import AVTarget
from bu4.evaluation.constructs.evaluable import Evaluable

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.evaluation.constructs.evaluable import Evaluable
from bu4.evaluation.constructs.evalue import EValue

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.evaluation.constructs.elinked import ELinked
from bu4.evaluation.av.envtype import envtype
from bu4.linking.prepare import prepare

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.linking.states.afterlinking import AfterLinking
from bu4.linking.targets.alchain import ALChain
from bu4.linking.states.linkingfinished import LinkingFinished

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.linking.targets.altarget import ALTarget
__all__ = ('AfterLinking',)

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.linking.states.linkingstate import LinkingState
from bu4.parsing.constructs.linked import Linked

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.linking.states.linkingstate import LinkingState
from bu4.parsing.constructs.linked import Parsed

View File

@ -1,5 +1,7 @@
__all__ = ('LinkingState',)
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
class LinkingState:
pass

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.linking.states.afterlinking import AfterLinking
from bu4.linking.targets.altarget import ALTarget
from bu4.linking.states.linkingstate import LinkingState

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from typing import Callable
from bu4.linking.targets.altarget import ALTarget

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.linking.states.linkingstate import LinkingState
from bu4.parsing.constructs.linked import Linked

View File

@ -1,6 +1,8 @@
__all__ = ('AbstractParser',)
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
class AbstractParser:
def read(self) -> int:
raise NotImplementedError

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
CODE_NULL = 0
CODE_CALL = 1
CODE_MAKE = 2

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.evaluation.av.aftervalue import AfterValue
from bu4.evaluation.av.envtype import envtype
from bu4.linking.states.linkingstate import LinkingState

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.evaluation.av.envtype import envtype
from bu4.evaluation.constructs.evaluable import Evaluable

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.evaluation.av.envtype import envtype
from bu4.linking.states.linkingstate import LinkingState
from bu4.parsing.codes import CODE_MAKE, CODE_NULL

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.evaluation.av.envtype import envtype
from bu4.linking.states.linkingstate import LinkingState
from bu4.parsing.codes import CODE_NAME, CODE_NULL

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.evaluation.constructs.enull import ENull
from bu4.evaluation.av.envtype import envtype
from bu4.linking.states.linkingstate import LinkingState

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from io import BytesIO
from bu4.parsing.abstractparser import AbstractParser

View File

@ -1,5 +1,7 @@
__all__ = ('ParseState',)
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
class ParseState:
pass

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.parsing.states.parsestate import ParseState
from bu4.parsing.targets.pstarget import PSTarget

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.parsing.constructs.lcall import PCall
from bu4.parsing.states.psafter import PSAfter
from bu4.parsing.states.psfinal import PSFinal

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.parsing.constructs.linked import Parsed
from bu4.parsing.states.parsestate import ParseState

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.parsing.states.parsestate import ParseState
__all__ = ('PSRead',)

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.parsing.constructs.linked import Parsed
from bu4.parsing.states.parsestate import ParseState
from bu4.parsing.states.psafter import PSAfter

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.parsing.abstractparser import AbstractParser
from bu4.parsing.constructs.linked import Parsed
from bu4.parsing.states.parsestate import ParseState

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from typing import Callable
from bu4.parsing.constructs.linked import Parsed

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.parsing.constructs.linked import Parsed
from bu4.parsing.states.parsestate import ParseState

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.parsing.constructs.linked import Parsed
from bu4.parsing.parser import Parser

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
import os
from io import StringIO

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from io import BytesIO
from bu4.parsing.codes import *

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.common_interface import with_common_interface
from bu4.evaluation.constructs.proxy import antiproxy, eproxy
from bu4.evaluation.sync import sync

View File

@ -1,3 +1,5 @@
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
import time
__all__ = ('TimeSample',)