alblack52 0.0.1__tar.gz → 0.0.2__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.2
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,14 @@ def merge(lst):
152
152
  return print('alooooooooo')
153
153
 
154
154
 
155
+ def insertion(lst):
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('чел это рофлс')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alblack52
3
- Version: 0.0.1
3
+ Version: 0.0.2
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
@@ -7,7 +7,7 @@ def readme():
7
7
 
8
8
  setup(
9
9
  name='alblack52',
10
- version='0.0.1',
10
+ version='0.0.2',
11
11
  author='__token__',
12
12
  description='This is the simplest module for quick work with files.',
13
13
  packages=['alblack52'],
File without changes
File without changes
File without changes