pyquoks 1.3.2__tar.gz → 1.4.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyquoks
3
- Version: 1.3.2
3
+ Version: 1.4.0
4
4
  Summary: Пакет PyPI для часто используемых модулей в проектах diquoks
5
5
  Home-page: https://diquoks.ru
6
6
  Author: Denis Titovets
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = pyquoks
3
- version = 1.3.2
3
+ version = 1.4.0
4
4
  author = Denis Titovets
5
5
  author_email = den232titovets@yandex.ru
6
6
  description = Пакет PyPI для часто используемых модулей в проектах diquoks
@@ -325,14 +325,12 @@ class IDatabaseManager:
325
325
  database=parent._PATH + self._FILENAME,
326
326
  check_same_thread=False,
327
327
  )
328
+ self.row_factory = sqlite3.Row
328
329
 
329
- self._cursor.execute(self._SQL)
330
+ cursor = self.cursor()
331
+ cursor.execute(self._SQL)
330
332
  self.commit()
331
333
 
332
- @property
333
- def _cursor(self) -> sqlite3.Cursor:
334
- return self.cursor()
335
-
336
334
  _PATH: str = utils.get_path("db/")
337
335
  """
338
336
  Path to the directory with databases
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyquoks
3
- Version: 1.3.2
3
+ Version: 1.4.0
4
4
  Summary: Пакет PyPI для часто используемых модулей в проектах diquoks
5
5
  Home-page: https://diquoks.ru
6
6
  Author: Denis Titovets
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes