Nicolas Dandrimont
f4f0972e6e
Merge branch 'master' of https://github.com/hcarvalhoalves/hy into hcarvalhoalves-master
2013-12-05 19:10:34 +01:00
Nicolas Dandrimont
f0a9149383
Merge branch 'string-cast' of https://github.com/Willyfrog/hy into Willyfrog-string-cast
2013-12-05 19:04:22 +01:00
Joe H. Rahme
61112138ca
Adds try-hy to the docs
...
As requested in PR #350 .
This commit also adds Joe "rahmu" Hakim Rahme to the AUTHORS file
2013-12-05 23:07:46 +05:30
Berker Peksag
2c76d8ec90
Document command line options.
2013-12-05 22:03:05 +05:30
Nicolas Dandrimont
f9a1995be8
Make HyObject.replace more resilient
...
This makes it work on quoted objects
2013-12-04 03:25:33 +02:00
Paul Tagliamonte
2f845c2a1e
Add @hcarvalhoalves to AUTHORS. We fucked up that PR :)
2013-12-03 00:03:13 -05:00
Morten Linderud
c933f703ff
Merge pull request #349 from hcarvalhoalves/fix-osx-complete
...
Fix REPL completions on OS X
2013-12-02 21:01:35 -08:00
Paul Tagliamonte
fd2421587e
Merge branch 'master' into pr/346
2013-12-02 23:48:58 -05:00
Paul Tagliamonte
31ad46c550
Erm, revert that. Apparently that wasn't proper.
2013-12-02 23:47:43 -05:00
Paul Tagliamonte
887f8819d4
add coveralls token
2013-12-02 23:46:30 -05:00
Paul Tagliamonte
de424fd2b6
Merge branch 'master' into pr/347
2013-12-02 23:41:54 -05:00
Paul Tagliamonte
611141a8e8
Merge branch 'master' into pr/348
2013-12-02 23:41:07 -05:00
Henrique Carvalho Alves
1b7d7bcef7
Fix REPL completions on OS X
2013-12-03 01:07:05 -02:00
Abhishek L
ba3ba37665
Adding support for coverage tests at coveralls
...
This commit adds support for coverage tests at coveralls.io,
using coverage plugin from nosetests
2013-12-03 01:58:35 +05:30
J Kenneth King
3972878d98
Add link to try-hy
2013-12-02 09:30:26 -05:00
Guillermo Vaya
3cc0f8a717
Added info about tox, so people can use it prior to a PR
2013-12-02 12:07:05 +01:00
Paul Tagliamonte
9531d772cf
add the start of hacking rules
2013-12-01 12:56:26 -05:00
Paul Tagliamonte
c255607205
don't test the halting problem anymore.
2013-12-01 09:48:16 -05:00
Paul Tagliamonte
7c446ed81a
Removing this file because it's nonfree.
...
The terms aren't clear, so I'm just going to get rid of this. Sad, but
meh.
2013-12-01 09:43:45 -05:00
Berker Peksag
8865bb8a8f
Merge pull request #321 from berkerpeksag/travis-use-mirrors
...
PyPI is now behind a CDN. The `--use-mirrors` option is deprecated.
2013-11-30 15:50:17 -08:00
Berker Peksag
8745024058
Merge pull request #342 from theanalyst/doc-fix
...
docs/api:formatting fixes in `quote' and `unquote'
2013-11-30 13:04:41 -08:00
Abhishek L
d8c29f51d6
docs/api:formatting fixes in quote' and
unquote'
...
A newline was omitted which caused the examples not to render for quote
and unquote forms
2013-12-01 01:20:58 +05:30
J Kenneth King
8fa59b653c
Merge pull request #341 from agentultra/master
...
Rename anaphoirc.rst to anaphoric.rst
2013-11-30 07:52:28 -08:00
agentultra
3773be1d1a
Rename anaphoirc.rst to anaphoric.rst
2013-11-30 10:47:08 -05:00
J Kenneth King
cbb7c5fd7f
Merge pull request #338 from agentultra/anaphoric-macros
...
Anaphoric macros
2013-11-30 07:37:08 -08:00
J Kenneth King
0b6d047239
Remove james@agentultra.com from copyright in core/macros.py
2013-11-30 10:35:57 -05:00
agentultra
5753fc0789
Fix typo in ap-map-when
2013-11-30 10:30:42 -05:00
agentultra
77db779019
Fix typo in ap-each
2013-11-30 10:29:41 -05:00
Henrique Carvalho Alves
62bc86a0b5
Fix sys.argv to reflect default Python behaviour
...
By default, calling the Python REPL without arguments causes
sys.argv to be a non-empty list with an empty string, and some
modules (e.g., pyNN) rely on that.
2013-11-29 23:51:41 -02:00
agentultra
cb6889314a
Add documentation and doc strings
2013-11-29 19:59:20 -05:00
agentultra
179017b9bd
Move anaphoric macros to contrib module
2013-11-28 23:53:02 -05:00
agentultra
20df6a5532
Make --map-when accept a predicate function instead of a form
...
This makes it look a little cleaner:
(list (--map-when odd? (* it 3) [1 2 3 4 5]))
2013-11-28 16:45:07 -05:00
agentultra
8e44cc3d9a
Add --each-while and --map-when
...
A couple of more macros:
hy> (--each-while [1 2 3 4 5] (< it 3) (print it))
1
2
3
hy>
```--each-while``` continues to evaluate the body form while the
predicate form is true for each element in the list.
```--map-when``` uses a predicate form to determine when to apply the
map form upon the element in the list:
hy> (list (--map-when (even? it) (* it 3) [1 2 3 4]))
[1, 6, 3, 12]
2013-11-28 16:15:23 -05:00
agentultra
2106a0e5d4
Add anaphoric versions of map, filter, and foreach
...
Anaphoric macros reduce the need to specify a lambda by binding a
special name in a form passed as a parameter to the macro. This allows
you to write more concise code:
(= (list (--filter (even? it) [1 2 3 4])) [2 4])
This patch just adds a few basic ones. Other forms that can be
converted to anaphoric versions include reduce, remove, enumerate,
etc.
2013-11-28 13:23:09 -05:00
Abhishek L
63a9e35f7f
Document eval
, quasiquote' and
quote'.
...
Also, fix the usage of `setv`.
2013-11-27 12:14:49 +02:00
Abhishek L
b8efb5c242
eg/twisted: Modified to follow the newer hy syntax
...
Updated example to follow newer function syntax, also replaced `caddr'
by `second'.
2013-11-24 21:22:12 +05:30
Berker Peksag
baa9f7436e
Merge pull request #332 from theanalyst/pypi-badges
...
Badges for pypi version and downloads.
2013-11-24 03:30:40 -08:00
Abhishek L
098058579a
Badges for pypi version and downloads
2013-11-24 15:44:25 +05:30
Paul Tagliamonte
5289934251
Merge branch 'master' into pr/315
2013-11-12 22:28:40 -05:00
Paul Tagliamonte
8c172c9c7e
Prepare 0.9.11
2013-11-12 21:59:34 -05:00
Paul Tagliamonte
a5273b233e
Update NEWS for 0.9.11
2013-11-12 21:56:56 -05:00
Berker Peksag
3cbef507e7
PyPI is now behind a CDN. The --use-mirrors
option is deprecated.
...
See PEP 449 and https://mail.python.org/pipermail/distutils-sig/2013-May/020848.html
for more information.
2013-11-11 03:08:48 +02:00
Paul Tagliamonte
e23d577105
Remove this script; no longer needed.
2013-11-10 10:03:43 -05:00
Nicolas Dandrimont
4962f4ca32
Merge pull request #320 from berkerpeksag/importlib-2.6
...
Add importlib to install_requires on Python 2.6.
2013-11-10 05:56:08 -08:00
Berker Peksag
1919963eb3
Add importlib to install_requires on Python 2.6.
...
Fixes #319 .
2013-11-10 14:55:36 +02:00
Paul Tagliamonte
60f3e79367
Moved tryhy to http://github.com/hylang/tryhy
2013-11-08 20:02:12 -05:00
Paul Tagliamonte
e3dd2f4bb8
Merge branch 'master' into pr/316
2013-11-08 19:56:46 -05:00
Paul Tagliamonte
f77ff5a482
Ignore me.
2013-11-08 19:53:18 -05:00
Johan Euphrosine
564bef5db8
eg/tryhy: add footer
2013-11-08 16:30:57 -08:00
Johan Euphrosine
d8515c54f9
eg/tryhy: add skin and meta tags, remove blink
2013-11-08 15:32:08 -08:00