3f9ae9122e
Also small DRYing in try handling. Previously, writing a bare (try (foo)) would invoke Pokemon exception catching (gotta catch 'em all) instead of the correct behavior, which is to raise the exception if no handler is provided. Note that this is a cute feature of Hy, as a `try` with no `except` is a syntax error. We avoid the syntax error here because we don't use Python's compiler, which is the only thing that can throw Syntax Errors. :D Fixes #555.
49 lines
2.0 KiB
Plaintext
49 lines
2.0 KiB
Plaintext
* Paul Tagliamonte <paultag@debian.org>
|
||
* Thomas Mashek <thomas@thescoundrels.net>
|
||
* Amrut Joshi <amrut.joshi@gmail.com>
|
||
* Christopher Allan Webber <cwebber@dustycloud.org>
|
||
* Will Kahn-Greene <willg@bluesock.org>
|
||
* James King <james@agentultra.com>
|
||
* Julien Danjou <julien@danjou.info>
|
||
* Nicolas Dandrimont <nicolas.dandrimont@crans.org>
|
||
* Gergely Nagy <algernon@madhouse-project.org>
|
||
* Konrad Hinsen <konrad.hinsen@fastmail.net>
|
||
* Vladimir Gorbunov <vsg@suburban.me>
|
||
* John Jacobsen <john@mail.npxdesigns.com>
|
||
* rogererens <roger.erens@e-s-c.biz>
|
||
* Thomas Ballinger <thomasballinger@gmail.com>
|
||
* Morten Linderud <mcfoxax@gmail.com>
|
||
* Guillermo Vayá <guivaya@gmail.com>
|
||
* Bob Tolbert <bob@tolbert.org>
|
||
* Ralph Möritz <ralph.moeritz@outlook.com>
|
||
* Josh McLaughlin <josh@phear.cc>
|
||
* Berker Peksag <berker.peksag@gmail.com>
|
||
* Henrique Carvalho Alves <hcarvalhoalves@gmail.com>
|
||
* Joe Hakim Rahme <joehakimrahme@gmail.com>
|
||
* Kenan Bölükbaşı <kenanbolukbasi@gmail.com>
|
||
* Abhishek L <abhishek.lekshmanan@gmail.com>
|
||
* Christopher Browne <cbbrowne@ca.afilias.info>
|
||
* Clinton N. Dreisbach <crnixon@gmail.com>
|
||
* D. Joe <deejoe+castanea@etrumeus.com>
|
||
* Duncan McGreggor <duncan.mcgreggor@rackspace.com>
|
||
* E. Anders Lannerback <anders@lannerback.net>
|
||
* Jack <jackjrabbit+github@gmail.com>
|
||
* Johan Euphrosine <proppy@google.com>
|
||
* Kevin Zita <kzita@kent.edu>
|
||
* Matt Fenwick <mfenwick100@gmail.com>
|
||
* Sean B. Palmer <sean@miscoranda.com>
|
||
* Thom Neale <twneale@gmail.com>
|
||
* Tuukka Turto <tuukka.turto@oktaeder.net>
|
||
* Vasudev Kamath <kamathvasudev@gmail.com>
|
||
* Yuval Langer <yuval.langer@gmail.com>
|
||
* Fatih Kadir Akın <fka@fatihak.in>
|
||
* Jack Hooper <contact.jhooper@gmail.com>
|
||
* Brian McKenna <brian@brianmckenna.org>
|
||
* Halit Alptekin <info@halitalptekin.com>
|
||
* Richard Parsons <richard.lee.parsons@gmail.com>
|
||
* han semaj <sangho.nah@gmail.com>
|
||
* kirbyfan64 <kirbyfan64@users.noreply.github.com>
|
||
* Brendan Curran-Johnson <brendan@bcjbcj.ca>
|
||
* Ivan Kozik <ivan@ludios.org>
|
||
* Allison Kaptur <allison.kaptur@gmail.com>
|