Skip to content

Commit 1ae33ee

Browse files
committed
Added pydoc
1 parent 7c9552c commit 1ae33ee

File tree

10 files changed

+5346
-3
lines changed

10 files changed

+5346
-3
lines changed

doc/index.html

Lines changed: 141 additions & 0 deletions
Large diffs are not rendered by default.

doc/stream.html

Lines changed: 63 additions & 0 deletions
Large diffs are not rendered by default.

doc/stream/booleans.html

Lines changed: 328 additions & 0 deletions
Large diffs are not rendered by default.

doc/stream/numbers.html

Lines changed: 1522 additions & 0 deletions
Large diffs are not rendered by default.

doc/stream/stream.html

Lines changed: 1929 additions & 0 deletions
Large diffs are not rendered by default.

doc/stream/util.html

Lines changed: 51 additions & 0 deletions
Large diffs are not rendered by default.

doc/stream/util/iterators.html

Lines changed: 605 additions & 0 deletions
Large diffs are not rendered by default.

doc/stream/util/optional.html

Lines changed: 703 additions & 0 deletions
Large diffs are not rendered by default.

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
f = open('./version')
44

55
major = 1
6-
minor = int(f.readline())
6+
minor = 5
7+
fix = int(f.readline())
78

8-
version = f"{major}.{minor}"
9+
version = f"{major}.{minor}.{fix}"
910

1011
this_directory = path.abspath(path.dirname(__file__))
1112
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4
1+
1

0 commit comments

Comments
 (0)