Skip to content

Commit

Permalink
Merge pull request #32 from Thunno/2.0.12-packages
Browse files Browse the repository at this point in the history
Packages for 2.0.12
  • Loading branch information
nayakrujul committed Apr 14, 2023
2 parents 6870829 + bbbfdfa commit ef9fb48
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 4 deletions.
Binary file added src/dist/thunno2-2.0.12.tar.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions src/thunno2.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Metadata-Version: 2.1
Name: thunno2
Version: 2.0.11
Version: 2.0.12
Summary: A golfing language
Home-page: https://github.com/Thunno/Thunno2
Author: Rujul Nayak
Author-email: rujulnayak@outlook.com
License: MIT
Download-URL: https://github.com/Thunno/Thunno2/archive/refs/tags/v2.0.11.tar.gz
Download-URL: https://github.com/Thunno/Thunno2/archive/refs/tags/v2.0.12.tar.gz
Keywords: golfing,code-golf,language
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Expand Down
Binary file modified src/thunno2/__pycache__/commands.cpython-39.pyc
Binary file not shown.
Binary file modified src/thunno2/__pycache__/tests.cpython-39.pyc
Binary file not shown.
Binary file modified src/thunno2/__pycache__/version.cpython-39.pyc
Binary file not shown.
3 changes: 2 additions & 1 deletion src/thunno2/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,8 @@ def recursively_distribute(x, y, dct, main=1):
yield r
else:
if not (x + y):
pass
if main:
yield []
elif not x:
yield from y
elif not y:
Expand Down
2 changes: 2 additions & 0 deletions src/thunno2/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -868,6 +868,8 @@ def assert_eq(a, *b):

assert_eq(call('*', '\\d+', '123abcd7890'), ['123', '7890'])

assert_eq(call('*', [], []), [])

# %

assert_eq(call('%', 3, 10), 1)
Expand Down
2 changes: 1 addition & 1 deletion src/thunno2/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
That's it!
"""

THUNNO_VERSION = '2.0.11'
THUNNO_VERSION = '2.0.12'

0 comments on commit ef9fb48

Please sign in to comment.