alblack52 0.0.1__tar.gz → 0.0.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alblack52
3
- Version: 0.0.1
3
+ Version: 0.0.3
4
4
  Summary: This is the simplest module for quick work with files.
5
5
  Author: __token__
6
6
  Author-email: mihajlovic.aleksa@gmail.com
@@ -152,3 +152,26 @@ def merge(lst):
152
152
  return print('alooooooooo')
153
153
 
154
154
 
155
+ def insertion():
156
+ '''def insertion(lst):
157
+ for i in range(1,len(lst)):
158
+ key = lst[i]
159
+ j = i - 1
160
+ while j >= 0 and lst[j] > key:
161
+ lst[j+1] = lst[j]
162
+ j -= 1
163
+ lst[j+1] = key
164
+ return lst'''
165
+ return print('чел это рофлс')
166
+
167
+
168
+ def all():
169
+ '''insertion
170
+ merge
171
+ shall
172
+ quick
173
+ selection
174
+ bubble
175
+ cocktail
176
+ comb'''
177
+ return print('гаврилен')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alblack52
3
- Version: 0.0.1
3
+ Version: 0.0.3
4
4
  Summary: This is the simplest module for quick work with files.
5
5
  Author: __token__
6
6
  Author-email: mihajlovic.aleksa@gmail.com
@@ -1,11 +1,11 @@
1
1
  README.md
2
2
  setup.cfg
3
3
  setup.py
4
- alblack52/52.py
5
4
  alblack52/__init__.py
6
5
  alblack52/layers.py
7
6
  alblack52/loggingin.py
8
7
  alblack52/speedfilein.py
8
+ alblack52/style.py
9
9
  alblack52/tensorclass.py
10
10
  alblack52.egg-info/PKG-INFO
11
11
  alblack52.egg-info/SOURCES.txt
@@ -5,9 +5,10 @@ def readme():
5
5
  with open('README.md', 'r') as f:
6
6
  return f.read()
7
7
 
8
+
8
9
  setup(
9
10
  name='alblack52',
10
- version='0.0.1',
11
+ version='0.0.3',
11
12
  author='__token__',
12
13
  description='This is the simplest module for quick work with files.',
13
14
  packages=['alblack52'],
File without changes
File without changes
File without changes