Kodi Arfer
491b474e7f
Make setv
return None for more types of rvalues
2017-04-07 21:21:19 +03:00
Kodi Arfer
286d568959
Fix a crash when tokenizing a single quote
2017-04-07 21:12:17 +03:00
Kodi Arfer
bb9f543246
Merge pull request #1265 from tuturto/repl-doc
...
Add --repl-output-fn into command line docs
2017-04-01 08:01:43 -07:00
Kodi Arfer
36d09cb194
More documentation of strings and keywords
...
Currently, HyKeyword is not in fact a subclass of HyString, so I removed that statement.
2017-04-01 08:23:41 +03:00
Tuukka Turto
61daf98111
Merge pull request #1263 from Kodiologist/walk-loop
...
Fix bug: `loop` replaced strings equal to "recur"
2017-04-01 08:19:44 +03:00
Tuukka Turto
4a5e2fd852
Merge branch 'master' into walk-loop
2017-04-01 08:15:10 +03:00
Tuukka Turto
5b2d823028
Add --repl-output-fn into command line docs
2017-04-01 08:10:45 +03:00
Kodi Arfer
c51ec11fb6
Merge pull request #1264 from Kodiologist/repl-except-do-tests
...
Add tests for #533
2017-03-31 18:16:38 -07:00
Kodi Arfer
a7085138f6
Add tests for #533
2017-03-30 16:10:34 -07:00
Kodi Arfer
5aadeba3fe
Fix bug: loop
replaced strings equal to "recur"
2017-03-30 15:49:10 -07:00
Kodi Arfer
f8e5645c2e
Small NEWS and docs fixes for hy-repr ( #1258 )
2017-03-25 12:13:44 -05:00
Kodi Arfer
741b9b9bd6
Merge branch 'hy-repr'
2017-03-25 08:22:38 -07:00
Kodi Arfer
e478008cce
Fix HyMacroExpansionError underline alignment
2017-03-24 11:09:30 -07:00
Kodi Arfer
ca1bd0ffd3
Add a test for as-> in the REPL
...
Closes #1255 .
2017-03-24 09:03:55 -07:00
Kodi Arfer
33a696d487
Add a command-line option --repl-output-fn (especially for hy.contrib.hy-repr)
2017-03-24 09:03:12 -07:00
Kodi Arfer
bf2f90a0d9
Add hy.contrib.hy-repr
2017-03-24 08:43:53 -07:00
Kodi Arfer
32e76caafe
Refactor test_bin
2017-03-24 08:43:53 -07:00
Kodi Arfer
ae1dd78c53
Make setv
always return None
2017-03-24 06:38:30 +02:00
Tuukka Turto
61f4277104
Merge branch 'kirbyfan64-yield-ret'
2017-03-19 22:27:06 +02:00
Tuukka Turto
2ee91f6dc6
Merge branch 'yield-ret'
...
Conflicts:
NEWS
2017-03-19 22:26:13 +02:00
Kodi Arfer
504e56361b
Merge pull request #1250 from pothos/master
...
fix example in documentation to unquote in quasi quote
2017-03-09 07:25:45 -08:00
Kodi Arfer
05cfe89dd9
Merge branch 'master' into master
2017-03-09 07:24:07 -08:00
Kodi Arfer
13170f8ee7
Merge pull request #1249 from john-patterson/patch-1
...
Added class use example to tutorial
2017-03-09 07:19:11 -08:00
Kai Lüke
35c872edb7
adhere to contributing guide by adding PR author
2017-03-09 16:07:21 +01:00
John Patterson
520b83d40b
Updated AUTHORS file
...
As per CONTRIBUTING documentation, here is a seperate commit to add my entry to AUTHORS.rst.
2017-03-09 08:16:23 -06:00
Kai Lüke
80f0e4af14
fix example in documentation to unquote in quasi quote
2017-03-09 15:02:23 +01:00
John Patterson
8fb7706a68
Added class use example to tutorial
...
I was following along and noticed that it wasn't actually explained how to _use_ the object we just made. I include both the `setv` style of writing the Hy as we've been using in the rest of the docs up to this point and a more LISP-y style use of the object.
2017-03-08 22:39:41 -06:00
Ryan Gonzalez
7c82c01a6a
Fix #151 (again!): yield inside with wasn't propagated to Result
2017-03-08 16:04:48 -06:00
Kodi Arfer
5f00921dea
Fix #1243 : read
raises EOFError on false inputs ( #1244 )
...
* Fix #1243 : `read` raises EOFError on false inputs
* Fix crash when trying to `eval` false values
2017-03-06 10:51:25 -06:00
Kodi Arfer
8b6a45e43a
Remove car
and cdr
in favor of first
and rest
( #1241 )
...
* Remove uses of `car` and `cdr` in /hy
* Remove uses of `car` and `cdr` in quote tests
* Remove `car` and `cdr` in favor of `first` and `rest`
I beefed up the documentation and tests for `first` and `rest` while I was at it.
I defined `car` and `cdr` in native_tests.cons so the tests read a bit more naturally.
2017-03-06 10:34:40 -06:00
Kodi Arfer
8ecb17d1fd
Fix bug: quoting a bytestring raises ImportError ( #1245 )
2017-03-04 19:04:28 -06:00
Kodi Arfer
6620cc4e6f
Merge pull request #1235 from Kodiologist/test-reorg
...
Minor test reorganization
2017-03-02 18:45:17 -08:00
Kodi Arfer
484daafa53
Move hy.core.reserved to hy.extra.reserved ( #1231 )
...
It was an odd one out by being in hy.core but needing to be called by a qualified name. It's at home in hy.extra.
2017-03-02 16:49:32 -06:00
Kodi Arfer
ebfa636b50
Fix #1237 : iterator-handling bug in partition
...
Also, `partition` with n < 0 now raises an error.
2017-02-26 20:37:35 +02:00
Tuukka Turto
8b84114869
Document get in nested structure ( #1236 )
2017-02-24 14:22:27 -08:00
Kodi Arfer
d649147b0c
Minor test reorganization
...
This removes two singleton directories.
2017-02-24 12:47:35 -08:00
Kodi Arfer
e4a7b317e1
Make fn
work like lambda
and remove lambda
( #1228 )
...
* with-decorator: Allow a `setv` form as the form to be decorated
This feature is of dubious value by itself, but it's necessary to allow `defn` to create a lambda instead of a `def`.
* Make `fn` work the same as `lambda`
That is, allow it to generate a `lambda` instead of a `def` statement if the function body is just an expression.
I've removed two uses of with_decorator in hy.compiler because they'd require adding another case to HyASTCompiler.compile_decorate_expression and they have no ultimate effect, anyway.
In a few tests, I've added a meaningless statement in `fn` bodies to force generation of a `def`.
I've removed `test_fn_compiler_empty_function` rather than rewrite it because it seems like a pain to maintain and not very useful.
* Remove `lambda`, now that `fn` does the same thing
2017-02-22 17:36:52 -06:00
Kodi Arfer
45b7a4ac9d
Add bytestring literals
2017-02-19 09:04:45 +02:00
Kodi Arfer
92d5d6b42c
Merge pull request #1224 from Kodiologist/refactor-models
...
Refactor hy.models
2017-02-17 07:42:40 -08:00
Kodi Arfer
0336ff3c68
Don't put redundant names in _stdlib ( #1221 )
...
This prevents pointless imports of hy.core, like importing `map` in Python 3.
2017-02-16 21:14:06 -07:00
Kodi Arfer
62e5d8e3e3
In hy.models, factor out strip_digit_separators
2017-02-16 19:43:16 -08:00
Kodi Arfer
bebcbbeba6
Change KEYWORD_PREFIX to HyKeyword.PREFIX
2017-02-16 19:43:16 -08:00
Kodi Arfer
ace125ee9b
Consolidate hy.models.* and tests/models/* into one file apiece
...
They were a lot of similar, tiny files.
2017-02-16 19:43:00 -08:00
Kodi Arfer
f3edeb99ae
Allow commas and underscores in numeric literals
...
You can use them as thousands separators.
This change differs from PEP 515 in that not only does it allow commas in addition to underscores, but it's much more liberal about placement. Any number of underscores or commas can be placed anywhere, even at the start.
2017-02-15 09:03:24 +02:00
Kodi Arfer
1d6de2792e
Merge branch 'let-it-be'
2017-02-13 09:19:37 -08:00
Kodi Arfer
23a7363cce
Fix a test for Python 2
2017-02-13 09:12:21 -08:00
Kodi Arfer
9f4b630e14
Fix Python 2 issue in take-nth
...
It was trying to `return` a value in a generator, which Python 2 forbids.
2017-02-13 09:12:21 -08:00
Kodi Arfer
3ec919278d
Remove let
from documentation
2017-02-13 09:12:21 -08:00
Kodi Arfer
2a44928eb7
Remove let
...
Yes, bizarrely, this does require editing the implementation of `defn` a little. Without the import, HyList isn't in scope. Defining `let` made it visible due to black magic regarding automatic import.
2017-02-13 09:12:21 -08:00
Kodi Arfer
31f3a55a26
Remove tests of let
2017-02-13 09:12:13 -08:00