8000 Fix a stupid typo · mlviz/pseudo-python@8b99aa7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8b99aa7

Browse files
committed
Fix a stupid typo
1 parent 2a5a565 commit 8b99aa7

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1+
0.2.28
2+
3+
18.03.2016
4+
5+
Fixes:
6+
* Fix unary negative numbers
7+
18
0.2.26
29

310
18.03.2016
411

512
Features:
613

7-
* Type checking for ==
8-
* Fix negative numbers
14+
* Type checking for ==
915

1016
0.2.22
1117

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A restricted Python to idiomatic JavaScript / Ruby / Go / C# translator
77

88
[Pseudo](https://github.com/alehander42/pseudo) is a framework for high level code generation: it is used by this compiler to translate a subset of Python to all Pseudo-supported languages
99

10-
**If you are using Python3.5 and you experience problems with an already installed version of pseudo-python, please upgrade it to `0.2.26` (`pip3 install pseudo-python --upgrade`)**
10+
**If you are using Python3.5 and you experience problems with an already installed version of pseudo-python, please upgrade it to `0.2.28` (`pip3 install pseudo-python --upgrade`)**
1111

1212

1313

VERSION

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

pseudo_python/ast_translator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@ def _translate_unaryop(self, operand, op, location):
843843
'value': -value_node['value'],
844844
'pseudo_type': 'Int'
845845
}
846-
else;
846+
else:
847847
return {
848848
'type': 'unary_op',
849849
'op': '-',

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='pseudo-python',
5-
version='0.2.26',
5+
version='0.2.28',
66
description='a python3 to pseudo compiler',
77
author='Alexander Ivanov',
88
author_email='alehander42@gmail.com',

0 commit comments

Comments
 (0)
0