From 19f276a3dafaafbe6c0135af0bb8dd1792d9b700 Mon Sep 17 00:00:00 2001 From: greyshadows Date: Fri, 4 Mar 2016 05:18:39 +0530 Subject: [PATCH] Minor Changes in ReadMe --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 36a4f83bc..6ce693156 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ When complete, this project will cover all the major topics in the book, for eac Until we get there, we will support a legacy branch, `aima3python2` (for the thrid edition of the textbook and for Python 2 code). To prepare code for the new master branch, the following should be done: -- Check for common problems in [porting to Python 3](http://python3porting.com/problems.html), such as: `prtint` is now a function; `range` and `map` and other functions no longer produce `list`s; objects of different types can no longer be compared with `<`; strings are now Unicode; it would be nice to move `%` string formating to `.format`; there is a new `next` function for generators; integer division now returns a float; we can now use set literals. +- Check for common problems in [porting to Python 3](http://python3porting.com/problems.html), such as: `print` is now a function; `range` and `map` and other functions no longer produce `list`s; objects of different types can no longer be compared with `<`; strings are now Unicode; it would be nice to move `%` string formating to `.format`; there is a new `next` function for generators; integer division now returns a float; we can now use set literals. - Implement functions that were in the third edition of the book but were not yet implemented in the code. - As we finish chapters for the new fourth edition, we will share the pseudocode, and describe what changes are necessary. - Create a `_test.py` file, and define functions that use `assert` to make tests. Remove any old `doctest` tests.