File tree 2 files changed +1
-135
lines changed
2 files changed +1
-135
lines changed Original file line number Diff line number Diff line change @@ -4,138 +4,4 @@ __pycache__/
4
4
secret_settings.py
5
5
# C extensions
6
6
* .so
7
-
8
- # Distribution / packaging
9
- .Python
10
- build /
11
- develop-eggs /
12
- dist /
13
- downloads /
14
- eggs /
15
- .eggs /
16
- lib /
17
- lib64 /
18
- parts /
19
- sdist /
20
- var /
21
- wheels /
22
- share /python-wheels /
23
- * .egg-info /
24
- .installed.cfg
25
- * .egg
26
- MANIFEST
27
-
28
- # PyInstaller
29
- # Usually these files are written by a python script from a template
30
- # before PyInstaller builds the exe, so as to inject date/other infos into it.
31
- * .manifest
32
- * .spec
33
-
34
- # Installer logs
35
- pip-log.txt
36
- pip-delete-this-directory.txt
37
-
38
- # Unit test / coverage reports
39
- htmlcov /
40
- .tox /
41
- .nox /
42
- .coverage
43
- .coverage. *
44
- .cache
45
- nosetests.xml
46
- coverage.xml
47
- * .cover
48
- * .py,cover
49
- .hypothesis /
50
- .pytest_cache /
51
- cover /
52
-
53
- # Translations
54
- * .mo
55
- * .pot
56
-
57
- # Django stuff:
58
- * .log
59
- local_settings.py
60
- db.sqlite3
61
- db.sqlite3-journal
62
-
63
- # Flask stuff:
64
- instance /
65
- .webassets-cache
66
-
67
- # Scrapy stuff:
68
- .scrapy
69
-
70
- # Sphinx documentation
71
- docs /_build /
72
-
73
- # PyBuilder
74
- .pybuilder /
75
- target /
76
-
77
- # Jupyter Notebook
78
- .ipynb_checkpoints
79
-
80
- # IPython
81
- profile_default /
82
- ipython_config.py
83
-
84
- # pyenv
85
- # For a library or package, you might want to ignore these files since the code is
86
- # intended to run in multiple environments; otherwise, check them in:
87
- # .python-version
88
-
89
- # pipenv
90
- # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
91
- # However, in case of collaboration, if having platform-specific dependencies or dependencies
92
- # having no cross-platform support, pipenv may install dependencies that don't work, or not
93
- # install all needed dependencies.
94
- # Pipfile.lock
95
-
96
- # PEP 582; used by e.g. github.com/David-OConnor/pyflow
97
- __pypackages__ /
98
-
99
- # Celery stuff
100
- celerybeat-schedule
101
- celerybeat.pid
102
-
103
- # SageMath parsed files
104
- * .sage.py
105
-
106
- # Environments
107
7
.env
108
- .venv
109
- env /
110
- venv /
111
- ENV /
112
- env.bak /
113
- venv.bak /
114
-
115
- # Spyder project settings
116
- .spyderproject
117
- .spyproject
118
-
119
- # Rope project settings
120
- .ropeproject
121
-
122
- # mkdocs documentation
123
- /site
124
-
125
- # mypy
126
- .mypy_cache /
127
- .dmypy.json
128
- dmypy.json
129
-
130
- # Pyre type checker
131
- .pyre /
132
-
133
- # pytype static type analyzer
134
- .pytype /
135
-
136
- # Cython debug symbols
137
- cython_debug /
138
-
139
- # DockerFiles
140
- Dockerfile
141
- docker-compose
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ def is_prime(number):
24
24
25
25
return True
26
26
27
- def PrimeGenerator (length = 13 ):
27
+ def PrimeGenerator (length = 2 ):
28
28
""" Generates prime number between randomised start and end points
29
29
args: length of primes you want to juggle with
30
30
returns: 1 prime number
You can’t perform that action at this time.
0 commit comments