On Thu, 12 May 2022 at 00:50, Stefan Ram <r...@zedat.fu-berlin.de> wrote:
>
> Marco Sulla <marco.sulla.pyt...@gmail.com> writes:
> >def tail(filepath, n=10, chunk_size=100):
> >    if (n <= 0):
> >        raise ValueError(_err_n)
> ...
>
>   There's no spec/doc, so one can't even test it.

Excuse me, you're very right.

"""
A function that "tails" the file. If you don't know what that means,
google "man tail"

filepath: the file path of the file to be "tailed"
n: the numbers of lines "tailed"
chunk_size: oh don't care, use it as is
"""
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to