From 1248a6594974d28c32b733d768ea60fb3fbe490d Mon Sep 17 00:00:00 2001 From: Adam NAILI Date: Tue, 1 May 2018 23:21:14 +0200 Subject: Removing a forgotten debug print in lru.py and adding Mr abbreviation in report --- lru.py | 3 --- report.md | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/lru.py b/lru.py index 53b122a..76af4c4 100644 --- a/lru.py +++ b/lru.py @@ -54,9 +54,6 @@ class LruPaginator: def _put_main(self, page): self._check_where_to_replace() - print("Cursor:") - print(self._main_cursor) - print("") overwritten = self.mem.main[self._main_cursor] self.mem.main[self._main_cursor] = page self._update_check_table(page) diff --git a/report.md b/report.md index 83c893f..e66b8d3 100644 --- a/report.md +++ b/report.md @@ -6,7 +6,7 @@ This file document explains the motivation behind implementation choices that ha ## Language choice This program has been implemented in Python. -This language choice has been approved by Sylvain Cherrier on 2018-03-17. +This language choice has been approved by Mr Sylvain Cherrier on 2018-03-17. Python has been chosen for its conciseness, expressiveness, object and inheritance support and its various libraries easing the development of the interactive command line interface and swappable algorithms. -- cgit v1.2.3