easycoder 250724.3__py2.py3-none-any.whl → 250725.1__py2.py3-none-any.whl

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.

Potentially problematic release.


This version of easycoder might be problematic. Click here for more details.

easycoder/__init__.py CHANGED
@@ -11,4 +11,4 @@ from .ec_pyside import *
11
11
  from .ec_timestamp import *
12
12
  from .ec_value import *
13
13
 
14
- __version__ = "250724.3"
14
+ __version__ = "250725.1"
easycoder/ec_keyboard.py CHANGED
@@ -51,7 +51,7 @@ class Keyboard(Handler):
51
51
  iconRect = self.pixmap.rect().translated(x, y)
52
52
  if iconRect.contains(event.pos()):
53
53
  self.iconClicked.emit()
54
- elif self._barRect().contains(event.pos()):
54
+ elif self.barRect().contains(event.pos()):
55
55
  if hasattr(self.window().windowHandle(), 'startSystemMove'):
56
56
  self.window().windowHandle().startSystemMove()
57
57
  else:
@@ -72,7 +72,7 @@ class Keyboard(Handler):
72
72
  self._drag_active = False
73
73
  super().mouseReleaseEvent(event)
74
74
 
75
- def _barRect(self):
75
+ def barRect(self):
76
76
  bar_width = 100
77
77
  bar_height = 20
78
78
  bar_x = (self.width() - bar_width) // 2
easycoder/ec_pyside.py CHANGED
@@ -64,7 +64,7 @@ class Graphics(Handler):
64
64
  QTimer.singleShot(100, self.afterShown)
65
65
 
66
66
  def afterShown(self):
67
- self.record['action']()
67
+ if 'action' in self.record: self.record['action']()
68
68
 
69
69
  #############################################################################
70
70
  # Keyword handlers
@@ -1,11 +1,12 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: easycoder
3
- Version: 250724.3
3
+ Version: 250725.1
4
4
  Summary: Rapid scripting in English
5
5
  Keywords: compiler,scripting,prototyping,programming,coding,python,low code,hypertalk,computer language,learn to code
6
6
  Author-email: Graham Trott <gtanyware@gmail.com>
7
7
  Description-Content-Type: text/markdown
8
8
  Classifier: License :: OSI Approved :: MIT License
9
+ License-File: LICENSE
9
10
  Requires-Dist: pytz
10
11
  Requires-Dist: requests
11
12
  Requires-Dist: psutil
@@ -1,17 +1,17 @@
1
- easycoder/__init__.py,sha256=M8IkggB_M0aTh27z26QB4eRMZKocG1mQ6lN2hRbwhh4,314
1
+ easycoder/__init__.py,sha256=i0hah_pn07mFI7wkEdfCU0OvuTQXYgB_fPv_K4KZEOg,314
2
2
  easycoder/close.png,sha256=3B9ueRNtEu9E4QNmZhdyC4VL6uqKvGmdfeFxIV9aO_Y,9847
3
3
  easycoder/ec_classes.py,sha256=PWPaJuTfaWD4-tgT-2WWOgeFV_jXxlxyKCxvXyylCUU,1824
4
4
  easycoder/ec_compiler.py,sha256=9byLqJZgMHAyFFyD8eGhY77oTsY1GY1aVcVrU4JAbd4,5287
5
5
  easycoder/ec_condition.py,sha256=YXvSBQKEzKGCcgUGo3Qp8iHolXmm2BpEm0NimSDszIM,785
6
6
  easycoder/ec_core.py,sha256=JHcxmD2xq4Fy35CVkOWJOikKO31eV22EwiRwqxg-ILs,97786
7
7
  easycoder/ec_handler.py,sha256=ohf3xUuWw_Qb5SZnulGtDhvCb11kvWtYfgbQTiOXpIY,2261
8
- easycoder/ec_keyboard.py,sha256=S-afXSZMEAoyjbq9OhhoR-6uskRVMsEH4nHeePu8XIA,19682
8
+ easycoder/ec_keyboard.py,sha256=ccxw7SdsL-KN91ueh_AGPWOsujfUZxPaBjvjl_TwsoI,19680
9
9
  easycoder/ec_program.py,sha256=SHg8NV9g-DclSWz8pQzgAiElreoYrI1FR1NrZS4_hIA,9968
10
- easycoder/ec_pyside.py,sha256=t7OpcB9NftMsoY7lFmXbrJF8e6yRe19tmHkRMQay5GM,42399
10
+ easycoder/ec_pyside.py,sha256=2mqqtgyxidOb25FCLy3J6JC4WHcw_eJzzMHzeqtd3T4,42427
11
11
  easycoder/ec_timestamp.py,sha256=myQnnF-mT31_1dpQKv2VEAu4BCcbypvMdzq7_DUi1xc,277
12
12
  easycoder/ec_value.py,sha256=zgDJTJhIg3yOvmnnKIfccIizmIhGbtvL_ghLTL1T5fg,2516
13
- easycoder-250724.3.dist-info/entry_points.txt,sha256=JXAZbenl0TnsIft2FcGJbJ-4qoztVu2FuT8PFmWFexM,44
14
- easycoder-250724.3.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
15
- easycoder-250724.3.dist-info/WHEEL,sha256=ssQ84EZ5gH1pCOujd3iW7HClo_O_aDaClUbX4B8bjKY,100
16
- easycoder-250724.3.dist-info/METADATA,sha256=MR-wOamC05_Ycy2WGquxPz7zCPuSwAySmZRUU_AqvKo,6875
17
- easycoder-250724.3.dist-info/RECORD,,
13
+ easycoder-250725.1.dist-info/entry_points.txt,sha256=JXAZbenl0TnsIft2FcGJbJ-4qoztVu2FuT8PFmWFexM,44
14
+ easycoder-250725.1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
15
+ easycoder-250725.1.dist-info/WHEEL,sha256=Dyt6SBfaasWElUrURkknVFAZDHSTwxg3PaTza7RSbkY,100
16
+ easycoder-250725.1.dist-info/METADATA,sha256=3ftzlFiLEWuV0DbzgMr63l69tzl0onKNdkgIwGQNNzk,6897
17
+ easycoder-250725.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: flit 3.10.1
2
+ Generator: flit 3.12.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any