kececinumbers 0.6.2__tar.gz → 0.6.3__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.6.2/kececinumbers.egg-info → kececinumbers-0.6.3}/PKG-INFO +1 -1
- {kececinumbers-0.6.2 → kececinumbers-0.6.3}/kececinumbers/__init__.py +1 -1
- {kececinumbers-0.6.2 → kececinumbers-0.6.3}/kececinumbers/_version.py +1 -1
- {kececinumbers-0.6.2 → kececinumbers-0.6.3}/kececinumbers/kececinumbers.py +3 -3
- {kececinumbers-0.6.2 → kececinumbers-0.6.3/kececinumbers.egg-info}/PKG-INFO +1 -1
- {kececinumbers-0.6.2 → kececinumbers-0.6.3}/pyproject.toml +1 -1
- {kececinumbers-0.6.2 → kececinumbers-0.6.3}/LICENSE +0 -0
- {kececinumbers-0.6.2 → kececinumbers-0.6.3}/MANIFEST.in +0 -0
- {kececinumbers-0.6.2 → kececinumbers-0.6.3}/README.md +0 -0
- {kececinumbers-0.6.2 → kececinumbers-0.6.3}/docs/conf.py +0 -0
- {kececinumbers-0.6.2 → kececinumbers-0.6.3}/kececinumbers.egg-info/SOURCES.txt +0 -0
- {kececinumbers-0.6.2 → kececinumbers-0.6.3}/kececinumbers.egg-info/dependency_links.txt +0 -0
- {kececinumbers-0.6.2 → kececinumbers-0.6.3}/kececinumbers.egg-info/requires.txt +0 -0
- {kececinumbers-0.6.2 → kececinumbers-0.6.3}/kececinumbers.egg-info/top_level.txt +0 -0
- {kececinumbers-0.6.2 → kececinumbers-0.6.3}/setup.cfg +0 -0
- {kececinumbers-0.6.2 → kececinumbers-0.6.3}/setup.py +0 -0
- {kececinumbers-0.6.2 → kececinumbers-0.6.3}/tests/test_sample.py +0 -0
@@ -762,8 +762,8 @@ def get_interactive() -> Tuple[List[Any], Dict[str, Any]]:
|
|
762
762
|
|
763
763
|
# User prompts for the starting value
|
764
764
|
start_prompts = {
|
765
|
-
1: "Enter positive integer start (e.g., '10'): ",
|
766
|
-
2: "Enter negative integer start (e.g., '-5'): ",
|
765
|
+
1: "Enter positive integer start (e.g., '10.0'): ",
|
766
|
+
2: "Enter negative integer start (e.g., '-5.0'): ",
|
767
767
|
3: "Enter complex start (e.g., '3+4j'): ",
|
768
768
|
4: "Enter float start (e.g., '3.14'): ",
|
769
769
|
5: "Enter rational start (e.g., '7/2'): ",
|
@@ -784,7 +784,7 @@ def get_interactive() -> Tuple[List[Any], Dict[str, Any]]:
|
|
784
784
|
# Get inputs from the user
|
785
785
|
start_input_val_raw = input(start_prompts.get(type_choice, "Enter starting value: "))
|
786
786
|
add_input_val_raw = input(add_prompts.get(type_choice, default_add_prompt))
|
787
|
-
num_kececi_steps = int(input("Enter number of Keçeci steps (e.g.,
|
787
|
+
num_kececi_steps = int(input("Enter number of Keçeci steps (e.g., 30): "))
|
788
788
|
|
789
789
|
show_details_input = input("Do you want to include the intermediate calculation steps? (y/n): ").lower().strip()
|
790
790
|
show_details = (show_details_input == 'y')
|
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
|