Commit Graph

2319 Commits

Author SHA1 Message Date
Kodi Arfer 97987d739c
Merge pull request #1430 from Kodiologist/eval-situation
Refactoring and docs for eval-X-compile
2017-11-02 21:45:33 -07:00
Kodi Arfer 1b3fc81f3f Document `eval-X-compile` 2017-11-02 08:43:43 -07:00
Kodi Arfer 52a0c8a870 Unify implementations of `eval-X-compile` 2017-11-02 08:43:43 -07:00
Kodi Arfer ed0b273551 Fix a bug in docs/conf.py
Without the trailing slash, `py = ('https://docs.python.org/3', None)` mysteriously creates links to the Python 2 documentation rather than Python 3.
2017-11-02 07:32:03 -07:00
Kodi Arfer b25a69179f Update the documentation of `while` 2017-11-02 07:32:03 -07:00
Kodi Arfer fd64575799 Handle statements in the condition of `while` 2017-11-02 07:31:58 -07:00
Ryan Gonzalez 49d2523e17
Merge pull request #1426 from gilch/letmacro
implement `let`
2017-11-01 09:39:57 -05:00
Ryan Gonzalez e0e664c030
Merge branch 'master' into letmacro 2017-11-01 09:39:18 -05:00
Tuukka Turto 687be1e78c
Merge pull request #1447 from gilch/astor
update astor to 0.6
2017-11-01 07:02:37 +02:00
gilch 8f2e80d12e add newlines in disassemble tests for astor 0.6 2017-10-31 21:46:44 -06:00
Kodi Arfer a074bb9a5c Work around an astor regression for NaN 2017-10-31 17:50:44 -07:00
gilch 6bb997dbea update astor to 0.6 2017-10-31 14:13:41 -06:00
Tuukka Turto 5975ad344d
Merge pull request #1415 from gilch/doc-macro
add documentation macros
2017-10-31 07:01:42 +02:00
gilch 91bdaea535 add documentation macros 2017-10-30 21:25:25 -06:00
gilch a4dd344ebd protect eval-and-compile/eval-when-compile in let 2017-10-30 20:24:09 -06:00
gilch 82b4518fa6 error check defclass name 2017-10-30 20:24:09 -06:00
gilch e90f082baf back `let` with dict for better defclass behavior 2017-10-30 20:23:57 -06:00
gilch 3707681056 make deftag/defmacro macros, not special forms 2017-10-29 17:52:40 -06:00
Tuukka Turto fac87c99d0
Merge pull request #1444 from gilch/xi-tag
change xi macro to #% tag macro
2017-10-29 21:34:56 +02:00
Tuukka Turto 268463c68d
Merge pull request #1432 from Kodiologist/else-detection
Don't treat [else…] or ("else"…) as else clauses
2017-10-29 21:21:32 +02:00
Tuukka Turto fabc55a62a
Merge pull request #1431 from Kodiologist/repl-crash
Fix a crash in HyTypeError.__str__
2017-10-29 21:20:00 +02:00
gilch 497e929913 generalize #% to arbitrary expressions 2017-10-26 14:23:25 -06:00
gilch b5f1136ba5 %* %** parameters for #% tag macro 2017-10-26 13:03:01 -06:00
gilch f81fb771eb change xi macro to #% tag macro 2017-10-26 12:55:48 -06:00
gilch 2319adcc7f fix whitespace in anaphoric 2017-10-26 12:53:08 -06:00
Kodi Arfer e0e850645d Merge pull request #1438 from ekaschalk/docstrings
Standardize hy.core docstrings
2017-10-17 13:22:58 -07:00
Kodi Arfer a5146e6494 Update AUTHORS 2017-10-17 13:21:26 -07:00
ekaschalk 38375c6bf7 Standardize hy.core docstrings 2017-10-17 13:20:26 -07:00
gilch c4b3d7bcda fix gensym format to start with _ for import * 2017-09-23 23:41:37 -06:00
gilch 1fd0dc8fbe add `let` to NEWS 2017-09-23 15:09:44 -06:00
gilch d2e8537d3f document `let` 2017-09-23 15:00:00 -06:00
gilch a54f6aa38b add hidden &name parameter to macros
The module name allows macros to preexpand their body in the proper
context.
2017-09-23 14:59:43 -06:00
gilch 5bbf4d9894 fix premature binding in `let` 2017-09-22 20:07:48 -06:00
Kodi Arfer 1e456c6ced Don't treat [else…] or ("else"…) as else clauses 2017-09-20 16:34:56 -07:00
Kodi Arfer f8fbcf3f06 Spacing fix in test 2017-09-20 16:31:55 -07:00
Kodi Arfer 39785b4657 Fix a crash in HyTypeError.__str__ 2017-09-20 10:40:52 -07:00
gilch 081a6e2575 factor out smacrolet from let 2017-09-18 23:01:13 -06:00
gilch bcc93fb1fe refactor let symbol expansion to a class 2017-09-18 21:01:42 -06:00
gilch 20b4342d40 support (global) in `let` 2017-09-18 14:54:08 -06:00
gilch ba898aa8d8 support (nonlocal) in `let` 2017-09-18 13:51:32 -06:00
gilch 34038ff433 implement `let` 2017-09-18 12:21:42 -06:00
Ryan Gonzalez db210929d0 Merge pull request #1360 from gilch/model-repr
proper reprs for Hy models
2017-09-18 08:45:28 -05:00
gilch d38956fb9e remove trailing commas in HyDict reprs 2017-09-18 01:03:00 -06:00
gilch 82cb3146ec Merge pull request #1421 from rkday/docstrings
Let argument destructuring work with docstrings
2017-09-17 21:30:08 -06:00
Rob Day 907e72681f Let argument destructuring work with docstrings 2017-09-17 21:06:45 +01:00
gilch cfdd321f9a Merge pull request #1422 from rkday/underscore_variables
Treat _42 etc. as a variable name, not an integer
2017-09-16 17:22:27 -06:00
Rob Day 5a6488e353 Treat _42 etc. as a variable name, not an integer 2017-09-16 16:12:29 -07:00
gilch e43d6f5e2f Merge pull request #1419 from rkday/else_multiple_statements
Allow multiple statements in the else branch of for
2017-09-16 14:10:28 -06:00
Rob Day be35b09e5d Allow multiple statements in the else branch of a for loop 2017-09-16 20:41:22 +01:00
Ryan Gonzalez 3f69ed8e8e Merge pull request #1399 from Kodiologist/compiler-refactor 2017-09-15 14:44:32 -05:00