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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pySpeechModule
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: A framework for creating speechd modules
5
5
  Author-email: John Settlemyer <author@example.com>
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pySpeechModule"
3
- version = "1.0.0"
3
+ version = "1.0.1"
4
4
  authors = [
5
5
  { name="John Settlemyer", email="author@example.com" },
6
6
  ]
@@ -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
- # TODO: not sure the diffrence between log level and debug
350
- pass
356
+ self._debug(line)
351
357
  elif (line == "QUIT\n"):
352
358
  break
353
359
  else:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pySpeechModule
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: A framework for creating speechd modules
5
5
  Author-email: John Settlemyer <author@example.com>
6
6
  License-Expression: MIT
File without changes
File without changes
File without changes