pySpeechModule 1.0.0__tar.gz → 1.0.1__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.
- {pyspeechmodule-1.0.0 → pyspeechmodule-1.0.1}/PKG-INFO +1 -1
- {pyspeechmodule-1.0.0 → pyspeechmodule-1.0.1}/pyproject.toml +1 -1
- {pyspeechmodule-1.0.0 → pyspeechmodule-1.0.1}/src/pySpeechModule/speechd_server.py +8 -2
- {pyspeechmodule-1.0.0 → pyspeechmodule-1.0.1}/src/pySpeechModule.egg-info/PKG-INFO +1 -1
- {pyspeechmodule-1.0.0 → pyspeechmodule-1.0.1}/LICENSE +0 -0
- {pyspeechmodule-1.0.0 → pyspeechmodule-1.0.1}/README.md +0 -0
- {pyspeechmodule-1.0.0 → pyspeechmodule-1.0.1}/setup.cfg +0 -0
- {pyspeechmodule-1.0.0 → pyspeechmodule-1.0.1}/src/pySpeechModule/__init__.py +0 -0
- {pyspeechmodule-1.0.0 → pyspeechmodule-1.0.1}/src/pySpeechModule/speechd.py +0 -0
- {pyspeechmodule-1.0.0 → pyspeechmodule-1.0.1}/src/pySpeechModule/speechd_action_worker.py +0 -0
- {pyspeechmodule-1.0.0 → pyspeechmodule-1.0.1}/src/pySpeechModule/speechd_execution_worker.py +0 -0
- {pyspeechmodule-1.0.0 → pyspeechmodule-1.0.1}/src/pySpeechModule/speechd_utilities.py +0 -0
- {pyspeechmodule-1.0.0 → pyspeechmodule-1.0.1}/src/pySpeechModule.egg-info/SOURCES.txt +0 -0
- {pyspeechmodule-1.0.0 → pyspeechmodule-1.0.1}/src/pySpeechModule.egg-info/dependency_links.txt +0 -0
- {pyspeechmodule-1.0.0 → pyspeechmodule-1.0.1}/src/pySpeechModule.egg-info/requires.txt +0 -0
- {pyspeechmodule-1.0.0 → pyspeechmodule-1.0.1}/src/pySpeechModule.egg-info/top_level.txt +0 -0
|
@@ -188,6 +188,13 @@ class SpeechServer():
|
|
|
188
188
|
with self.server_lock:
|
|
189
189
|
stdout.write("203 OK AUDIO INITIALIZED\n")
|
|
190
190
|
stdout.flush()
|
|
191
|
+
def _debug(self, line):
|
|
192
|
+
"""
|
|
193
|
+
We already set up logging so we will not be using this for now.
|
|
194
|
+
|
|
195
|
+
:meta private:
|
|
196
|
+
"""
|
|
197
|
+
pass
|
|
191
198
|
|
|
192
199
|
def _loglevel(self):
|
|
193
200
|
"""
|
|
@@ -346,8 +353,7 @@ class SpeechServer():
|
|
|
346
353
|
elif (line == "PAUSE\n"):
|
|
347
354
|
self._pause()
|
|
348
355
|
elif (line[:5] == "DEBUG"):
|
|
349
|
-
|
|
350
|
-
pass
|
|
356
|
+
self._debug(line)
|
|
351
357
|
elif (line == "QUIT\n"):
|
|
352
358
|
break
|
|
353
359
|
else:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyspeechmodule-1.0.0 → pyspeechmodule-1.0.1}/src/pySpeechModule/speechd_execution_worker.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyspeechmodule-1.0.0 → pyspeechmodule-1.0.1}/src/pySpeechModule.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|