easycoder 250612.1__py2.py3-none-any.whl → 250618.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 +1 -1
- easycoder/ec_core.py +0 -1
- easycoder/ec_pyside.py +17 -4
- {easycoder-250612.1.dist-info → easycoder-250618.1.dist-info}/METADATA +2 -1
- {easycoder-250612.1.dist-info → easycoder-250618.1.dist-info}/RECORD +8 -8
- {easycoder-250612.1.dist-info → easycoder-250618.1.dist-info}/LICENSE +0 -0
- {easycoder-250612.1.dist-info → easycoder-250618.1.dist-info}/WHEEL +0 -0
- {easycoder-250612.1.dist-info → easycoder-250618.1.dist-info}/entry_points.txt +0 -0
easycoder/__init__.py
CHANGED
easycoder/ec_core.py
CHANGED
easycoder/ec_pyside.py
CHANGED
|
@@ -919,12 +919,25 @@ class Graphics(Handler):
|
|
|
919
919
|
title = data['title']
|
|
920
920
|
message = data['message']
|
|
921
921
|
if style == 'question':
|
|
922
|
-
|
|
923
|
-
if
|
|
922
|
+
choice = QMessageBox.question(window, title, message)
|
|
923
|
+
if choice == QMessageBox.Yes: result = 'Yes'
|
|
924
924
|
else: result = 'No'
|
|
925
|
+
if style == 'yesnocancel':
|
|
926
|
+
choice = QMessageBox.question(
|
|
927
|
+
window,
|
|
928
|
+
title,
|
|
929
|
+
message,
|
|
930
|
+
QMessageBox.Yes | QMessageBox.No | QMessageBox.Cancel
|
|
931
|
+
)
|
|
932
|
+
if choice == QMessageBox.Yes:
|
|
933
|
+
result = 'Yes'
|
|
934
|
+
elif choice == QMessageBox.No:
|
|
935
|
+
result = 'No'
|
|
936
|
+
else:
|
|
937
|
+
result = 'Cancel'
|
|
925
938
|
elif style == 'warning':
|
|
926
|
-
|
|
927
|
-
if
|
|
939
|
+
choice = QMessageBox.warning(window, title, message)
|
|
940
|
+
if choice == QMessageBox.Ok: result = 'OK'
|
|
928
941
|
else: result = ''
|
|
929
942
|
else: result = 'Cancel'
|
|
930
943
|
v = {}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: easycoder
|
|
3
|
-
Version:
|
|
3
|
+
Version: 250618.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>
|
|
@@ -8,6 +8,7 @@ Description-Content-Type: text/markdown
|
|
|
8
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
9
|
Requires-Dist: pytz
|
|
10
10
|
Requires-Dist: requests
|
|
11
|
+
Requires-Dist: psutil
|
|
11
12
|
Requires-Dist: paramiko
|
|
12
13
|
Requires-Dist: pyside6
|
|
13
14
|
Project-URL: Home, https://github.com/easycoder/easycoder-py
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
easycoder/README.md,sha256=BVXmYphcTJ6q6RN_9L6HtQukgCnOjSLVIsTM3lk-9aM,587
|
|
2
|
-
easycoder/__init__.py,sha256=
|
|
2
|
+
easycoder/__init__.py,sha256=_rT8h5lahxvdIUoXWpGkFSpk8SaDfspVbYnuG4qxk20,262
|
|
3
3
|
easycoder/ec_classes.py,sha256=L6-6yWHDHw8yF9TGL4WWc4p1aUyXzYz6Gom7jJ43h8o,1823
|
|
4
4
|
easycoder/ec_compiler.py,sha256=6X9Sy5hr9-Ek36XqWrHJ8Ct1fE5sw2hBLKKFMh2RfRs,5130
|
|
5
5
|
easycoder/ec_condition.py,sha256=YXvSBQKEzKGCcgUGo3Qp8iHolXmm2BpEm0NimSDszIM,785
|
|
6
|
-
easycoder/ec_core.py,sha256=
|
|
6
|
+
easycoder/ec_core.py,sha256=HJW5QcpmKsSAeU-D_LdErg5BZeeVjGPLvu35xh5KgEE,97775
|
|
7
7
|
easycoder/ec_handler.py,sha256=ohf3xUuWw_Qb5SZnulGtDhvCb11kvWtYfgbQTiOXpIY,2261
|
|
8
8
|
easycoder/ec_program.py,sha256=IDpfq9oghFJMJyRD9uab31VOP5MOF4M7kcUVfDn7d4I,9992
|
|
9
|
-
easycoder/ec_pyside.py,sha256=
|
|
9
|
+
easycoder/ec_pyside.py,sha256=QFPu_5fW2XFBovOvbwOFwy6SlCKw1swdJfb-I0d-AE8,40342
|
|
10
10
|
easycoder/ec_timestamp.py,sha256=myQnnF-mT31_1dpQKv2VEAu4BCcbypvMdzq7_DUi1xc,277
|
|
11
11
|
easycoder/ec_value.py,sha256=zgDJTJhIg3yOvmnnKIfccIizmIhGbtvL_ghLTL1T5fg,2516
|
|
12
|
-
easycoder-
|
|
13
|
-
easycoder-
|
|
14
|
-
easycoder-
|
|
15
|
-
easycoder-
|
|
16
|
-
easycoder-
|
|
12
|
+
easycoder-250618.1.dist-info/entry_points.txt,sha256=JXAZbenl0TnsIft2FcGJbJ-4qoztVu2FuT8PFmWFexM,44
|
|
13
|
+
easycoder-250618.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
14
|
+
easycoder-250618.1.dist-info/WHEEL,sha256=ssQ84EZ5gH1pCOujd3iW7HClo_O_aDaClUbX4B8bjKY,100
|
|
15
|
+
easycoder-250618.1.dist-info/METADATA,sha256=jA3cqs6lQs9E7YV9Yw-xvmbrITZrj8bg76o21siTTgk,6875
|
|
16
|
+
easycoder-250618.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|