Paul R. Tagliamonte
d762625aeb
also ignore setf / setv
2013-04-05 20:00:19 -04:00
Paul R. Tagliamonte
65ad7a3b87
Adding FunctionDef as a returnable
2013-04-05 19:46:27 -04:00
Paul R. Tagliamonte
1d01d8874a
Bugfix for #50 . I'm slowly starting to take a shine to this.
2013-04-05 19:29:31 -04:00
Paul R. Tagliamonte
7da1129298
Merge branch 'master' into bugfix/branch-mangler
2013-04-04 21:52:45 -04:00
Paul R. Tagliamonte
9578ae7a57
This fix is in living memory of paroneayea
2013-04-04 21:52:15 -04:00
Paul R. Tagliamonte
7c9fa3758c
Print is for loosers.
2013-04-04 21:50:01 -04:00
Paul R. Tagliamonte
4e2e18576a
Fixing a subtle bug.
2013-04-04 21:49:04 -04:00
Paul R. Tagliamonte
256506ede0
Sketch for #50 - branch mangler
...
This is only slightly better. The insert point needs to walk
with the for loop.
2013-04-04 21:47:00 -04:00
Paul R. Tagliamonte
b2406a9d72
list flattener
2013-04-04 19:32:56 -04:00
Nicolas Dandrimont
940afcafa9
Allow (do) inside (defn)
...
Closes #59
2013-04-04 11:07:38 +02:00
Paul R. Tagliamonte
d421d869af
Fixing the "olasd" bug
2013-04-03 20:18:56 -04:00
Nicolas Dandrimont
d070d3d484
Add while loops to the compiler
2013-04-03 19:55:09 +02:00
James King
dceaad716a
[WIP] Added lambda list keyword parsing step
...
This allows us to translate lisp argument lists to Python ones.
(defun foo (x y &rest z &optional {foo 3} &aux kwargs))
translates roughly to:
def foo(x, y, *z, foo=3, **kwargs):
pass
2013-04-03 11:39:31 -04:00
James King
c200b4e3d1
Added HyLambdaListKeyword tokens to the lexer
...
The name "lambda list keyword" is a historical artifact from the CLHS
and not optimal (http://clhs.lisp.se/Body/26_glo_l.htm ).
The name may change at some point.
2013-04-03 10:19:18 -04:00
Paul Tagliamonte
0eeb5321e1
Merge branch 'jd/if-parsing' of git://github.com/jd/hy
2013-04-03 09:00:53 -04:00
Julien Danjou
1c8d21e3de
Raises TypeError on bad if statements
...
This relates to issue #6 .
Signed-off-by: Julien Danjou <julien@danjou.info>
2013-04-03 11:25:17 +02:00
Paul R. Tagliamonte
9c3142f752
tigten that code up a skitch
2013-04-02 21:00:50 -04:00
Paul R. Tagliamonte
26f38367e9
cleaning the last bit up
2013-04-02 20:47:24 -04:00
Paul R. Tagliamonte
c8d3a1859e
Reflowing the list-comp bits.
2013-04-02 20:47:24 -04:00
Paul Tagliamonte
12106d3d37
idle cleanup
2013-04-02 14:50:16 -04:00
James King
aa3a4e54cd
Minor py3.3 fixes
2013-04-02 14:38:21 -04:00
Paul R. Tagliamonte
b1c605cc6a
Updating the tests to not break Python 3.x
2013-04-01 23:06:59 -04:00
Paul R. Tagliamonte
fb6ec426e6
Adding in list comprehensions.
...
Thanks to paroneayea for the syntax brotip.
2013-04-01 22:47:11 -04:00
Paul R. Tagliamonte
c4b270a727
test coverage bits
2013-04-01 22:07:05 -04:00
Paul R. Tagliamonte
bb14b7a7f6
Add progn in :)
2013-04-01 21:08:32 -04:00
Paul Tagliamonte
6831841699
Adding in some tests for print
2013-04-01 19:51:21 -04:00
Christopher Allan Webber
b4ba4087df
Minor stylistic change to compiler.py
2013-04-01 18:41:55 -05:00
Christopher Allan Webber
f8be07b643
Defun is now an alias for defn
2013-04-01 16:36:56 -05:00
Christopher Allan Webber
73695881a9
Provide setf and setv as options for setting variables.
2013-04-01 16:32:48 -05:00
Christopher Allan Webber
9416422330
Changing cond to be more common lisp / emacs lisp like
...
Instead of:
(cond (condition-1) (body-1)
(condition-2) (body-2))
We now work like:
(cond ((condition-1) (body-1)
(condition-2) (body-2)))
2013-04-01 10:33:45 -05:00
Paul R. Tagliamonte
82c4ac1b8f
Moving to 0.9.3
2013-03-29 20:38:02 -04:00
Paul R. Tagliamonte
684c0e928b
License bits.
2013-03-28 22:42:53 -04:00
Paul R. Tagliamonte
c447a5dc7e
style cleanup
2013-03-28 22:33:32 -04:00
Paul R. Tagliamonte
32574e140e
adding space
2013-03-28 22:32:24 -04:00
Paul R. Tagliamonte
de7a450d92
Adding in a completer.
2013-03-28 21:42:40 -04:00
Paul R. Tagliamonte
1f1676c354
Adding in meth
2013-03-27 22:19:27 -04:00
Paul R. Tagliamonte
7eed26f0c3
Adding in tuples. Close #30 . Ugly as hell.
2013-03-27 20:09:11 -04:00
Paul R. Tagliamonte
ccd26205d7
unbreak py3.3? need to re-add with
2013-03-24 10:00:07 -04:00
Paul R. Tagliamonte
dd6a883060
implmenting with
2013-03-24 02:04:44 -04:00
Paul Tagliamonte
980cd493e0
futzing with a few things
2013-03-21 19:27:34 -04:00
Amrut Joshi
db88fcd347
Support for "import as"
2013-03-19 05:33:45 +00:00
Paul R. Tagliamonte
07c169eb1b
Adding in a main bit for rPy evil bits
2013-03-19 00:58:43 -04:00
Paul R. Tagliamonte
a94831beac
add mod operator
2013-03-18 21:46:58 -04:00
Paul R. Tagliamonte
a0ff144686
adding slightly better reprs in
2013-03-18 21:08:35 -04:00
Paul R. Tagliamonte
83a9bdc87d
adding in rest macros
2013-03-18 19:49:36 -04:00
Paul R. Tagliamonte
a58c813dda
adding in a slice operator
2013-03-18 19:47:48 -04:00
Paul R. Tagliamonte
8f6c77831b
Adding first' /
car'
2013-03-18 16:11:29 -04:00
Paul R. Tagliamonte
4cb4e7384e
holy shit it's 2013
2013-03-18 10:27:14 -04:00
Paul R. Tagliamonte
da65ba4b4c
Releasing 0.9.2
2013-03-15 15:35:25 -04:00
Paul R. Tagliamonte
791a7f212e
adding set thinger in
2013-03-15 15:33:51 -04:00