HubBasePE 0.0.1b1.dev1__tar.gz → 0.0.1b1.dev2__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.
- {hubbasepe-0.0.1b1.dev1 → hubbasepe-0.0.1b1.dev2}/PKG-INFO +1 -1
- {hubbasepe-0.0.1b1.dev1 → hubbasepe-0.0.1b1.dev2}/pyproject.toml +1 -1
- {hubbasepe-0.0.1b1.dev1 → hubbasepe-0.0.1b1.dev2}/src/HubBasePE/HubBasePE.py +14 -4
- {hubbasepe-0.0.1b1.dev1 → hubbasepe-0.0.1b1.dev2}/LICENSE +0 -0
- {hubbasepe-0.0.1b1.dev1 → hubbasepe-0.0.1b1.dev2}/README.md +0 -0
- {hubbasepe-0.0.1b1.dev1 → hubbasepe-0.0.1b1.dev2}/src/HubBasePE/__init__.py +0 -0
- {hubbasepe-0.0.1b1.dev1 → hubbasepe-0.0.1b1.dev2}/tests/Test1.py +0 -0
- {hubbasepe-0.0.1b1.dev1 → hubbasepe-0.0.1b1.dev2}/tests/Test3.py +0 -0
- {hubbasepe-0.0.1b1.dev1 → hubbasepe-0.0.1b1.dev2}/tests/Test4.py +0 -0
|
@@ -534,6 +534,12 @@ def Code():
|
|
|
534
534
|
pass
|
|
535
535
|
else:
|
|
536
536
|
Programm16()
|
|
537
|
+
ProgrammP1()
|
|
538
|
+
CTNP()
|
|
539
|
+
if Stop == 1:
|
|
540
|
+
pass
|
|
541
|
+
else:
|
|
542
|
+
ProgrammP2()
|
|
537
543
|
else:
|
|
538
544
|
pass
|
|
539
545
|
print("") #(16.03.2026)
|
|
@@ -550,10 +556,14 @@ def Code():
|
|
|
550
556
|
else:
|
|
551
557
|
print("VipAccess = 'F'")
|
|
552
558
|
print("You shall not pass")
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
559
|
+
Pass = random.randint(1,20)
|
|
560
|
+
if Pass <= 19:
|
|
561
|
+
global RA
|
|
562
|
+
RestartAttempt = RestAtt = RA = int(RA) + 1
|
|
563
|
+
print("Restart №"+str(RA),"initialaizing")
|
|
564
|
+
Restart()
|
|
565
|
+
else:
|
|
566
|
+
print("A bug has occured!")
|
|
557
567
|
|
|
558
568
|
def Restart(): #(16.03.2026)
|
|
559
569
|
global E_C
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|