Update README.md

This commit is contained in:
Luciano Ramalho 2021-07-10 12:03:04 -03:00 committed by GitHub
parent 5196576124
commit 3f7c926067
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@ use in _Fluent Python, Second Edition_, I made a few changes for didactic reason
_Luciano Ramalho_
## Major changes
## Significant changes
* Make the `lambda` form accept more than one expression as the body. This is consistent with _Scheme_ syntax, and provides a useful example for the book. To implement this:
* In `Procedure.__call__`: evaluate `self.body` as a list of expressions, instead of a single expression. Return the value of the last expression.
@ -22,7 +22,7 @@ but removing the test cases for the features implemented only in
[lispy.py](https://github.com/norvig/pytudes/blob/705c0a335c1811a203e79587d7d41865cf7f41c7/py/lispy.py)
## Minor changes
## Name changes
Cosmetic changes to make the code look more familiar to
Python programmers, the audience of _Fluent Python_.