From 35b09f67c7979b815eea2740d36e5d829c05e8b5 Mon Sep 17 00:00:00 2001 From: Charles Choi Date: Thu, 6 Feb 2025 16:13:00 -0800 Subject: [PATCH] Fix bug s[-1] --- README.org | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.org b/README.org index 51a2f30..80e5a75 100644 --- a/README.org +++ b/README.org @@ -4,7 +4,7 @@ This document is for readers who are familiar with the Python programming langua ❗ This is a *work in progress*. Constructive [[https://github.com/kickingvegas/elisp-for-python/issues][feedback]] is encouraged. -Version: 0.2.0 +Version: 0.2.1 * Table of Contents :TOC_3: - [[#elisp-cheatsheet-for-python-programmers][Elisp Cheatsheet for Python Programmers]] @@ -83,8 +83,7 @@ Elisp list specific translations. | ~x not in s~ | ~(not (member x s))~ | ~member~ can be used if ~cmp~ is ~equal~. | | ~s + t~ | ~(seq-concatenate 'list s t)~, ~(append s t)~ | | | ~s[0]~ | ~(car s)~ | | -| ~s[-n]~ | ~(car (last s))~ | | - +| ~s[-1]~ | ~(car (last s))~ | | *** Non-Mutating Python Sequence to Elisp Vector Translations