qstate 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- qstate-1.0.0/.gitignore +218 -0
- qstate-1.0.0/.idea/.gitignore +10 -0
- qstate-1.0.0/.idea/inspectionProfiles/Project_Default.xml +6 -0
- qstate-1.0.0/.idea/inspectionProfiles/profiles_settings.xml +6 -0
- qstate-1.0.0/.idea/misc.xml +7 -0
- qstate-1.0.0/.idea/modules.xml +8 -0
- qstate-1.0.0/.idea/qsm.iml +11 -0
- qstate-1.0.0/.idea/vcs.xml +7 -0
- qstate-1.0.0/.idea/workspace.xml +184 -0
- qstate-1.0.0/LICENSE +674 -0
- qstate-1.0.0/PKG-INFO +816 -0
- qstate-1.0.0/README.md +116 -0
- qstate-1.0.0/docs/flow-model.png +0 -0
- qstate-1.0.0/docs/flow-model.puml +26 -0
- qstate-1.0.0/docs/object-model.cmapx +3 -0
- qstate-1.0.0/docs/object-model.png +0 -0
- qstate-1.0.0/docs/object-model.puml +36 -0
- qstate-1.0.0/pyproject.toml +46 -0
- qstate-1.0.0/scripts/test.sh +4 -0
- qstate-1.0.0/src/qsm/__init__.py +10 -0
- qstate-1.0.0/src/qsm/deque.py +82 -0
- qstate-1.0.0/src/qsm/exceptions.py +4 -0
- qstate-1.0.0/src/qsm/qsm.py +72 -0
- qstate-1.0.0/src/qsm/states.py +30 -0
- qstate-1.0.0/tests/test_deque.py +170 -0
- qstate-1.0.0/tests/test_qsm.py +133 -0
qstate-1.0.0/.gitignore
ADDED
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[codz]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py.cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
# Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# UV
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
# uv.lock
|
|
102
|
+
|
|
103
|
+
# poetry
|
|
104
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
105
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
106
|
+
# commonly ignored for libraries.
|
|
107
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
108
|
+
# poetry.lock
|
|
109
|
+
# poetry.toml
|
|
110
|
+
|
|
111
|
+
# pdm
|
|
112
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
113
|
+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
|
114
|
+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
|
115
|
+
# pdm.lock
|
|
116
|
+
# pdm.toml
|
|
117
|
+
.pdm-python
|
|
118
|
+
.pdm-build/
|
|
119
|
+
|
|
120
|
+
# pixi
|
|
121
|
+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
|
122
|
+
# pixi.lock
|
|
123
|
+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
|
124
|
+
# in the .venv directory. It is recommended not to include this directory in version control.
|
|
125
|
+
.pixi
|
|
126
|
+
|
|
127
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
128
|
+
__pypackages__/
|
|
129
|
+
|
|
130
|
+
# Celery stuff
|
|
131
|
+
celerybeat-schedule
|
|
132
|
+
celerybeat.pid
|
|
133
|
+
|
|
134
|
+
# Redis
|
|
135
|
+
*.rdb
|
|
136
|
+
*.aof
|
|
137
|
+
*.pid
|
|
138
|
+
|
|
139
|
+
# RabbitMQ
|
|
140
|
+
mnesia/
|
|
141
|
+
rabbitmq/
|
|
142
|
+
rabbitmq-data/
|
|
143
|
+
|
|
144
|
+
# ActiveMQ
|
|
145
|
+
activemq-data/
|
|
146
|
+
|
|
147
|
+
# SageMath parsed files
|
|
148
|
+
*.sage.py
|
|
149
|
+
|
|
150
|
+
# Environments
|
|
151
|
+
.env
|
|
152
|
+
.envrc
|
|
153
|
+
.venv
|
|
154
|
+
env/
|
|
155
|
+
venv/
|
|
156
|
+
ENV/
|
|
157
|
+
env.bak/
|
|
158
|
+
venv.bak/
|
|
159
|
+
|
|
160
|
+
# Spyder project settings
|
|
161
|
+
.spyderproject
|
|
162
|
+
.spyproject
|
|
163
|
+
|
|
164
|
+
# Rope project settings
|
|
165
|
+
.ropeproject
|
|
166
|
+
|
|
167
|
+
# mkdocs documentation
|
|
168
|
+
/site
|
|
169
|
+
|
|
170
|
+
# mypy
|
|
171
|
+
.mypy_cache/
|
|
172
|
+
.dmypy.json
|
|
173
|
+
dmypy.json
|
|
174
|
+
|
|
175
|
+
# Pyre type checker
|
|
176
|
+
.pyre/
|
|
177
|
+
|
|
178
|
+
# pytype static type analyzer
|
|
179
|
+
.pytype/
|
|
180
|
+
|
|
181
|
+
# Cython debug symbols
|
|
182
|
+
cython_debug/
|
|
183
|
+
|
|
184
|
+
# PyCharm
|
|
185
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
186
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
187
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
188
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
189
|
+
# .idea/
|
|
190
|
+
|
|
191
|
+
# Abstra
|
|
192
|
+
# Abstra is an AI-powered process automation framework.
|
|
193
|
+
# Ignore directories containing user credentials, local state, and settings.
|
|
194
|
+
# Learn more at https://abstra.io/docs
|
|
195
|
+
.abstra/
|
|
196
|
+
|
|
197
|
+
# Visual Studio Code
|
|
198
|
+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
|
199
|
+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
|
200
|
+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
|
201
|
+
# you could uncomment the following to ignore the entire vscode folder
|
|
202
|
+
# .vscode/
|
|
203
|
+
# Temporary file for partial code execution
|
|
204
|
+
tempCodeRunnerFile.py
|
|
205
|
+
|
|
206
|
+
# Ruff stuff:
|
|
207
|
+
.ruff_cache/
|
|
208
|
+
|
|
209
|
+
# PyPI configuration file
|
|
210
|
+
.pypirc
|
|
211
|
+
|
|
212
|
+
# Marimo
|
|
213
|
+
marimo/_static/
|
|
214
|
+
marimo/_lsp/
|
|
215
|
+
__marimo__/
|
|
216
|
+
|
|
217
|
+
# Streamlit
|
|
218
|
+
.streamlit/secrets.toml
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="Black">
|
|
4
|
+
<option name="sdkName" value="Python 3.12 (qsm)" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.12 (qsm)" project-jdk-type="Python SDK" />
|
|
7
|
+
</project>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="PYTHON_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$">
|
|
5
|
+
<sourceFolder url="file://$MODULE_DIR$/src/qsm" isTestSource="false" />
|
|
6
|
+
<sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="true" />
|
|
7
|
+
</content>
|
|
8
|
+
<orderEntry type="jdk" jdkName="Python 3.12 (qsm)" jdkType="Python SDK" />
|
|
9
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
10
|
+
</component>
|
|
11
|
+
</module>
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="AutoImportSettings">
|
|
4
|
+
<option name="autoReloadType" value="SELECTIVE" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="ChangeListManager">
|
|
7
|
+
<list default="true" id="f95bdd91-b152-4ff6-885c-d53415e6e12a" name="Changes" comment="updated tests to exercise flush=False">
|
|
8
|
+
<change beforePath="$PROJECT_DIR$/src/qsm/_version.py" beforeDir="false" />
|
|
9
|
+
</list>
|
|
10
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
11
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
12
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
13
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
14
|
+
</component>
|
|
15
|
+
<component name="FileTemplateManagerImpl">
|
|
16
|
+
<option name="RECENT_TEMPLATES">
|
|
17
|
+
<list>
|
|
18
|
+
<option value="Python Script" />
|
|
19
|
+
</list>
|
|
20
|
+
</option>
|
|
21
|
+
</component>
|
|
22
|
+
<component name="Git.Settings">
|
|
23
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
24
|
+
</component>
|
|
25
|
+
<component name="ProjectColorInfo"><![CDATA[{
|
|
26
|
+
"associatedIndex": 1
|
|
27
|
+
}]]></component>
|
|
28
|
+
<component name="ProjectId" id="3EwdzHe6xuZPFigohaEkxoCkg3y" />
|
|
29
|
+
<component name="ProjectViewState">
|
|
30
|
+
<option name="hideEmptyMiddlePackages" value="true" />
|
|
31
|
+
<option name="showLibraryContents" value="true" />
|
|
32
|
+
</component>
|
|
33
|
+
<component name="PropertiesComponent"><![CDATA[{
|
|
34
|
+
"keyToString": {
|
|
35
|
+
"ModuleVcsDetector.initialDetectionPerformed": "true",
|
|
36
|
+
"RunOnceActivity.ShowReadmeOnStart": "true",
|
|
37
|
+
"RunOnceActivity.TerminalTabsStorage.copyFrom.TerminalArrangementManager.252": "true",
|
|
38
|
+
"RunOnceActivity.git.unshallow": "true",
|
|
39
|
+
"RunOnceActivity.typescript.service.memoryLimit.init": "true",
|
|
40
|
+
"ai.playground.ignore.import.keys.banner.in.settings": "true",
|
|
41
|
+
"git-widget-placeholder": "main",
|
|
42
|
+
"last_opened_file_path": "/workspace/github/qsm/docs/object-model.png",
|
|
43
|
+
"node.js.detected.package.eslint": "true",
|
|
44
|
+
"node.js.detected.package.tslint": "true",
|
|
45
|
+
"node.js.selected.package.eslint": "(autodetect)",
|
|
46
|
+
"node.js.selected.package.tslint": "(autodetect)",
|
|
47
|
+
"nodejs_package_manager_path": "npm",
|
|
48
|
+
"vue.rearranger.settings.migration": "true"
|
|
49
|
+
}
|
|
50
|
+
}]]></component>
|
|
51
|
+
<component name="SharedIndexes">
|
|
52
|
+
<attachedChunks>
|
|
53
|
+
<set>
|
|
54
|
+
<option value="bundled-js-predefined-d6986cc7102b-9b0f141eb926-JavaScript-PY-253.30387.173" />
|
|
55
|
+
<option value="bundled-python-sdk-4762d8aabb82-6d6dccd035ac-com.jetbrains.pycharm.pro.sharedIndexes.bundled-PY-253.30387.173" />
|
|
56
|
+
</set>
|
|
57
|
+
</attachedChunks>
|
|
58
|
+
</component>
|
|
59
|
+
<component name="TaskManager">
|
|
60
|
+
<task active="true" id="Default" summary="Default task">
|
|
61
|
+
<changelist id="f95bdd91-b152-4ff6-885c-d53415e6e12a" name="Changes" comment="" />
|
|
62
|
+
<created>1781093826919</created>
|
|
63
|
+
<option name="number" value="Default" />
|
|
64
|
+
<option name="presentableId" value="Default" />
|
|
65
|
+
<updated>1781093826919</updated>
|
|
66
|
+
<workItem from="1781093828142" duration="13453000" />
|
|
67
|
+
</task>
|
|
68
|
+
<task id="LOCAL-00001" summary="Added initial source code">
|
|
69
|
+
<option name="closed" value="true" />
|
|
70
|
+
<created>1781105184560</created>
|
|
71
|
+
<option name="number" value="00001" />
|
|
72
|
+
<option name="presentableId" value="LOCAL-00001" />
|
|
73
|
+
<option name="project" value="LOCAL" />
|
|
74
|
+
<updated>1781105184560</updated>
|
|
75
|
+
</task>
|
|
76
|
+
<task id="LOCAL-00002" summary="fixed method name">
|
|
77
|
+
<option name="closed" value="true" />
|
|
78
|
+
<created>1781107119077</created>
|
|
79
|
+
<option name="number" value="00002" />
|
|
80
|
+
<option name="presentableId" value="LOCAL-00002" />
|
|
81
|
+
<option name="project" value="LOCAL" />
|
|
82
|
+
<updated>1781107119077</updated>
|
|
83
|
+
</task>
|
|
84
|
+
<task id="LOCAL-00003" summary="changed queue to accept multiple states at once">
|
|
85
|
+
<option name="closed" value="true" />
|
|
86
|
+
<created>1781108757400</created>
|
|
87
|
+
<option name="number" value="00003" />
|
|
88
|
+
<option name="presentableId" value="LOCAL-00003" />
|
|
89
|
+
<option name="project" value="LOCAL" />
|
|
90
|
+
<updated>1781108757400</updated>
|
|
91
|
+
</task>
|
|
92
|
+
<task id="LOCAL-00004" summary="simplifying api">
|
|
93
|
+
<option name="closed" value="true" />
|
|
94
|
+
<created>1781109260413</created>
|
|
95
|
+
<option name="number" value="00004" />
|
|
96
|
+
<option name="presentableId" value="LOCAL-00004" />
|
|
97
|
+
<option name="project" value="LOCAL" />
|
|
98
|
+
<updated>1781109260413</updated>
|
|
99
|
+
</task>
|
|
100
|
+
<task id="LOCAL-00005" summary="simplifying api">
|
|
101
|
+
<option name="closed" value="true" />
|
|
102
|
+
<created>1781109281632</created>
|
|
103
|
+
<option name="number" value="00005" />
|
|
104
|
+
<option name="presentableId" value="LOCAL-00005" />
|
|
105
|
+
<option name="project" value="LOCAL" />
|
|
106
|
+
<updated>1781109281632</updated>
|
|
107
|
+
</task>
|
|
108
|
+
<task id="LOCAL-00006" summary="added tests for simplified api">
|
|
109
|
+
<option name="closed" value="true" />
|
|
110
|
+
<created>1781109787337</created>
|
|
111
|
+
<option name="number" value="00006" />
|
|
112
|
+
<option name="presentableId" value="LOCAL-00006" />
|
|
113
|
+
<option name="project" value="LOCAL" />
|
|
114
|
+
<updated>1781109787337</updated>
|
|
115
|
+
</task>
|
|
116
|
+
<task id="LOCAL-00007" summary="update documentation">
|
|
117
|
+
<option name="closed" value="true" />
|
|
118
|
+
<created>1781110230348</created>
|
|
119
|
+
<option name="number" value="00007" />
|
|
120
|
+
<option name="presentableId" value="LOCAL-00007" />
|
|
121
|
+
<option name="project" value="LOCAL" />
|
|
122
|
+
<updated>1781110230348</updated>
|
|
123
|
+
</task>
|
|
124
|
+
<task id="LOCAL-00008" summary="updated to use initial state">
|
|
125
|
+
<option name="closed" value="true" />
|
|
126
|
+
<created>1781110961883</created>
|
|
127
|
+
<option name="number" value="00008" />
|
|
128
|
+
<option name="presentableId" value="LOCAL-00008" />
|
|
129
|
+
<option name="project" value="LOCAL" />
|
|
130
|
+
<updated>1781110961883</updated>
|
|
131
|
+
</task>
|
|
132
|
+
<task id="LOCAL-00009" summary="fixed type hint for context">
|
|
133
|
+
<option name="closed" value="true" />
|
|
134
|
+
<created>1781111044779</created>
|
|
135
|
+
<option name="number" value="00009" />
|
|
136
|
+
<option name="presentableId" value="LOCAL-00009" />
|
|
137
|
+
<option name="project" value="LOCAL" />
|
|
138
|
+
<updated>1781111044779</updated>
|
|
139
|
+
</task>
|
|
140
|
+
<task id="LOCAL-00010" summary="simplified qsm queue and loop">
|
|
141
|
+
<option name="closed" value="true" />
|
|
142
|
+
<created>1781112362952</created>
|
|
143
|
+
<option name="number" value="00010" />
|
|
144
|
+
<option name="presentableId" value="LOCAL-00010" />
|
|
145
|
+
<option name="project" value="LOCAL" />
|
|
146
|
+
<updated>1781112362952</updated>
|
|
147
|
+
</task>
|
|
148
|
+
<task id="LOCAL-00011" summary="updated documentation">
|
|
149
|
+
<option name="closed" value="true" />
|
|
150
|
+
<created>1781112552327</created>
|
|
151
|
+
<option name="number" value="00011" />
|
|
152
|
+
<option name="presentableId" value="LOCAL-00011" />
|
|
153
|
+
<option name="project" value="LOCAL" />
|
|
154
|
+
<updated>1781112552327</updated>
|
|
155
|
+
</task>
|
|
156
|
+
<task id="LOCAL-00012" summary="updated tests to exercise flush=False">
|
|
157
|
+
<option name="closed" value="true" />
|
|
158
|
+
<created>1781112627357</created>
|
|
159
|
+
<option name="number" value="00012" />
|
|
160
|
+
<option name="presentableId" value="LOCAL-00012" />
|
|
161
|
+
<option name="project" value="LOCAL" />
|
|
162
|
+
<updated>1781112627357</updated>
|
|
163
|
+
</task>
|
|
164
|
+
<option name="localTasksCounter" value="13" />
|
|
165
|
+
<servers />
|
|
166
|
+
</component>
|
|
167
|
+
<component name="TypeScriptGeneratedFilesManager">
|
|
168
|
+
<option name="version" value="3" />
|
|
169
|
+
</component>
|
|
170
|
+
<component name="VcsManagerConfiguration">
|
|
171
|
+
<MESSAGE value="Added initial source code" />
|
|
172
|
+
<MESSAGE value="fixed method name" />
|
|
173
|
+
<MESSAGE value="changed queue to accept multiple states at once" />
|
|
174
|
+
<MESSAGE value="simplifying api" />
|
|
175
|
+
<MESSAGE value="added tests for simplified api" />
|
|
176
|
+
<MESSAGE value="update documentation" />
|
|
177
|
+
<MESSAGE value="updated to use initial state" />
|
|
178
|
+
<MESSAGE value="fixed type hint for context" />
|
|
179
|
+
<MESSAGE value="simplified qsm queue and loop" />
|
|
180
|
+
<MESSAGE value="updated documentation" />
|
|
181
|
+
<MESSAGE value="updated tests to exercise flush=False" />
|
|
182
|
+
<option name="LAST_COMMIT_MESSAGE" value="updated tests to exercise flush=False" />
|
|
183
|
+
</component>
|
|
184
|
+
</project>
|