From 9957eab12c2db5f258a7de42a9c32a651d8c9e85 Mon Sep 17 00:00:00 2001 From: Jonas Wielicki Date: Wed, 9 Jul 2014 18:27:58 +0200 Subject: Adapt docstrings to changed arguments --- urwid/util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/urwid/util.py b/urwid/util.py index 61e5eb6..3569f8c 100644 --- a/urwid/util.py +++ b/urwid/util.py @@ -283,7 +283,7 @@ def rle_len( rle ): def rle_append_beginning_modify(rle, a_r): """ - Append (a, r) to BEGINNING of rle. + Append (a, r) (unpacked from *a_r*) to BEGINNING of rle. Merge with first run when possible MODIFIES rle parameter contents. Returns None. @@ -301,7 +301,7 @@ def rle_append_beginning_modify(rle, a_r): def rle_append_modify(rle, a_r): """ - Append (a,r) to the rle list rle. + Append (a, r) (unpacked from *a_r*) to the rle list rle. Merge with last run when possible. MODIFIES rle parameter contents. Returns None. -- cgit v1.2.1