kececinumbers 0.5.5__tar.gz → 0.5.7__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.5/kececinumbers.egg-info → kececinumbers-0.5.7}/PKG-INFO +1 -1
- {kececinumbers-0.5.5 → kececinumbers-0.5.7}/kececinumbers/__init__.py +1 -1
- {kececinumbers-0.5.5 → kececinumbers-0.5.7}/kececinumbers/_version.py +1 -1
- {kececinumbers-0.5.5 → kececinumbers-0.5.7}/kececinumbers/kececinumbers.py +6 -2
- {kececinumbers-0.5.5 → kececinumbers-0.5.7/kececinumbers.egg-info}/PKG-INFO +1 -1
- {kececinumbers-0.5.5 → kececinumbers-0.5.7}/pyproject.toml +1 -1
- {kececinumbers-0.5.5 → kececinumbers-0.5.7}/LICENSE +0 -0
- {kececinumbers-0.5.5 → kececinumbers-0.5.7}/MANIFEST.in +0 -0
- {kececinumbers-0.5.5 → kececinumbers-0.5.7}/README.md +0 -0
- {kececinumbers-0.5.5 → kececinumbers-0.5.7}/docs/conf.py +0 -0
- {kececinumbers-0.5.5 → kececinumbers-0.5.7}/kececinumbers.egg-info/SOURCES.txt +0 -0
- {kececinumbers-0.5.5 → kececinumbers-0.5.7}/kececinumbers.egg-info/dependency_links.txt +0 -0
- {kececinumbers-0.5.5 → kececinumbers-0.5.7}/kececinumbers.egg-info/requires.txt +0 -0
- {kececinumbers-0.5.5 → kececinumbers-0.5.7}/kececinumbers.egg-info/top_level.txt +0 -0
- {kececinumbers-0.5.5 → kececinumbers-0.5.7}/setup.cfg +0 -0
- {kececinumbers-0.5.5 → kececinumbers-0.5.7}/setup.py +0 -0
- {kececinumbers-0.5.5 → kececinumbers-0.5.7}/tests/test_sample.py +0 -0
@@ -635,11 +635,15 @@ def unified_generator(kececi_type: int, start_input_raw: str, add_input_raw: str
|
|
635
635
|
last_divisor_used = divisor
|
636
636
|
break
|
637
637
|
|
638
|
-
# --- Sonuçları Ayrı
|
638
|
+
# --- Sonuçları Ayrı ve Doğru Listelere Kaydet ---
|
639
639
|
full_log.append(added_value)
|
640
640
|
if modified_value is not None:
|
641
641
|
full_log.append(modified_value)
|
642
|
-
|
642
|
+
|
643
|
+
# Nihai sonucu, eğer bir önceki ara adımdan farklıysa log'a ekle.
|
644
|
+
# Bu, `(12.3, ...), (12.3, ...)` tekrarını önler.
|
645
|
+
if not full_log or next_q != full_log[-1]:
|
646
|
+
full_log.append(next_q)
|
643
647
|
|
644
648
|
clean_trajectory.append(next_q)
|
645
649
|
|
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
|