kececinumbers 0.5.7__tar.gz → 0.5.8__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.
- {kececinumbers-0.5.7/kececinumbers.egg-info → kececinumbers-0.5.8}/PKG-INFO +1 -1
- {kececinumbers-0.5.7 → kececinumbers-0.5.8}/kececinumbers/__init__.py +1 -1
- {kececinumbers-0.5.7 → kececinumbers-0.5.8}/kececinumbers/_version.py +1 -1
- {kececinumbers-0.5.7 → kececinumbers-0.5.8}/kececinumbers/kececinumbers.py +4 -0
- {kececinumbers-0.5.7 → kececinumbers-0.5.8/kececinumbers.egg-info}/PKG-INFO +1 -1
- {kececinumbers-0.5.7 → kececinumbers-0.5.8}/pyproject.toml +1 -1
- {kececinumbers-0.5.7 → kececinumbers-0.5.8}/LICENSE +0 -0
- {kececinumbers-0.5.7 → kececinumbers-0.5.8}/MANIFEST.in +0 -0
- {kececinumbers-0.5.7 → kececinumbers-0.5.8}/README.md +0 -0
- {kececinumbers-0.5.7 → kececinumbers-0.5.8}/docs/conf.py +0 -0
- {kececinumbers-0.5.7 → kececinumbers-0.5.8}/kececinumbers.egg-info/SOURCES.txt +0 -0
- {kececinumbers-0.5.7 → kececinumbers-0.5.8}/kececinumbers.egg-info/dependency_links.txt +0 -0
- {kececinumbers-0.5.7 → kececinumbers-0.5.8}/kececinumbers.egg-info/requires.txt +0 -0
- {kececinumbers-0.5.7 → kececinumbers-0.5.8}/kececinumbers.egg-info/top_level.txt +0 -0
- {kececinumbers-0.5.7 → kececinumbers-0.5.8}/setup.cfg +0 -0
- {kececinumbers-0.5.7 → kececinumbers-0.5.8}/setup.py +0 -0
- {kececinumbers-0.5.7 → kececinumbers-0.5.8}/tests/test_sample.py +0 -0
@@ -572,6 +572,10 @@ def unified_generator(kececi_type: int, start_input_raw: str, add_input_raw: str
|
|
572
572
|
raise ValueError(f"Invalid Keçeci Number Type: {kececi_type}. Must be between {TYPE_POSITIVE_REAL} and {TYPE_NEUTROSOPHIC_BICOMPLEX}.")
|
573
573
|
|
574
574
|
# --- 1. Değişkenlerin Başlatılması ---
|
575
|
+
# Varsayılan bölme türünü ondalıklı olarak ayarla.
|
576
|
+
# Tamsayı tipleri (POSITIVE/NEGATIVE_REAL) bu değeri kendi blokları içinde ezecektir.
|
577
|
+
use_integer_division = False
|
578
|
+
|
575
579
|
try:
|
576
580
|
# Her sayı tipi, kendi `elif` bloğu içinde kendi girdisini işler.
|
577
581
|
if kececi_type in [TYPE_POSITIVE_REAL, TYPE_NEGATIVE_REAL]:
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|