Fix typos
This commit is contained in:
parent
66aa14c88f
commit
3a1af0c219
6
NEWS
6
NEWS
@ -7,7 +7,7 @@ Changes from 0.10.1
|
|||||||
* yield-from support for Python 2
|
* yield-from support for Python 2
|
||||||
* with-decorator can now be applied to classes.
|
* with-decorator can now be applied to classes.
|
||||||
* assert now accepts an optional assertion message.
|
* assert now accepts an optional assertion message.
|
||||||
* Comparision operators can now be used with map, filter, and reduce.
|
* Comparison operators can now be used with map, filter, and reduce.
|
||||||
* new last function
|
* new last function
|
||||||
* new drop-last function
|
* new drop-last function
|
||||||
* new lisp-if-not/lif-not macro
|
* new lisp-if-not/lif-not macro
|
||||||
@ -73,7 +73,7 @@ Changes from 0.10.0
|
|||||||
[ Misc. Fixes ]
|
[ Misc. Fixes ]
|
||||||
* Symbols like true, false, none can't be assigned
|
* Symbols like true, false, none can't be assigned
|
||||||
* Set sys.argv default to [''] like Python does
|
* Set sys.argv default to [''] like Python does
|
||||||
* REPL displays the the python version and platform at startup
|
* REPL displays the python version and platform at startup
|
||||||
* Dockerfile added for https://registry.hub.docker.com/_/hylang/
|
* Dockerfile added for https://registry.hub.docker.com/_/hylang/
|
||||||
|
|
||||||
[ Contrib changes ]
|
[ Contrib changes ]
|
||||||
@ -328,7 +328,7 @@ Changes from Hy 0.9.7
|
|||||||
expand things in quotes.
|
expand things in quotes.
|
||||||
* kwapply now works with symbols as well as raw dicts. (ND)
|
* kwapply now works with symbols as well as raw dicts. (ND)
|
||||||
* Try / Except will now return properly again. (PT)
|
* Try / Except will now return properly again. (PT)
|
||||||
* Bare-names sprinked around the AST won't show up anymore (ND)
|
* Bare-names sprinkled around the AST won't show up anymore (ND)
|
||||||
|
|
||||||
[ Language Changes ]
|
[ Language Changes ]
|
||||||
|
|
||||||
|
@ -289,7 +289,7 @@ def cmdline_handler(scriptname, argv):
|
|||||||
parser.add_argument('args', nargs=argparse.REMAINDER,
|
parser.add_argument('args', nargs=argparse.REMAINDER,
|
||||||
help=argparse.SUPPRESS)
|
help=argparse.SUPPRESS)
|
||||||
|
|
||||||
# stash the hy exectuable in case we need it later
|
# stash the hy executable in case we need it later
|
||||||
# mimics Python sys.executable
|
# mimics Python sys.executable
|
||||||
hy.executable = argv[0]
|
hy.executable = argv[0]
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
;; Tests where the emited code relies on Python 3.
|
;; Tests where the emitted code relies on Python 3.
|
||||||
;; Conditionally included in nosetests runs.
|
;; Conditionally included in nosetests runs.
|
||||||
|
|
||||||
(import [hy._compat [PY33]])
|
(import [hy._compat [PY33]])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user