Groups | Search | Server Info | Login | Register
Groups > comp.unix.programmer > #16199
| From | Keith Thompson <Keith.S.Thompson+u@gmail.com> |
|---|---|
| Newsgroups | comp.unix.shell, comp.unix.programmer, comp.lang.misc |
| Subject | Re: Python (was Re: I did not inhale) |
| Date | 2024-08-28 17:23 -0700 |
| Organization | None to speak of |
| Message-ID | <875xrkb2iq.fsf@nosuchdomain.example.com> (permalink) |
| References | (16 earlier) <valnei$35rt8$2@dont-email.me> <87ikvlcs7i.fsf@nosuchdomain.example.com> <vamclm$3c4ke$1@dont-email.me> <87ttf4bdcx.fsf@nosuchdomain.example.com> <vaoaak$3l470$3@dont-email.me> |
Cross-posted to 3 groups.
Lawrence D'Oliveiro <ldo@nz.invalid> writes:
> On Wed, 28 Aug 2024 13:29:18 -0700, Keith Thompson wrote:
>> But ok, I found your post and removed all the #end comments. I found it
>> just as readable without them as with them.
>
> You know what? You are right. That example was just too
> well-structured.
>
> Here’s a more dangerous one:
>
> def register_additional_standard(self, **kwargs) :
> "registers additional standard interfaces that are not automatically" \
> " installed at Connection creation time. Currently the only one is" \
> " the object-manager interface, registered with\n" \
> "\n" \
> " «conn».register_additional_standard(managed_objects = True)\n"
That's not the conventional way to format a docstring. If you're using
backslashes to splice lines in Python, it's likely you're doing
something wrong.
> for key in kwargs :
> if kwargs[key] :
> if key == "managed_objects" :
> if self._managed_objects != None :
I think "is not None" is more idiomatic.
> raise asyncio.InvalidStateError \
> (
> "object manager interface already registered"
> )
You don't need the \ if you put the ( on the same line.
> #end if
> self.register \
> (
> path = "/",
> interface = ManagedObjectsHandler(),
> fallback = True
> )
Again, you've decided how you want to place parentheses and you're
forcing the syntax to cater to that. I might write that as:
self.register(
path = "/",
interface = ManagedObjectsHandler(),
fallback = True
)
> self._managed_objects = {}
> else :
You leave a space between "else" and ":". It's not wrong, but it's not
something I've ever seen. It's likely to be just a little jarring to
readers.
> raise TypeError("unrecognized argument keyword “%s”" % key)
Do you have a requirement to use older versions of Python that don't
support f-strings?
> #end if
> #end if
> #end for
> return \
> self
Why not just "return self"?
> #end register_additional_standard
>
> versus
>
> def register_additional_standard(self, **kwargs) :
> "registers additional standard interfaces that are not automatically" \
> " installed at Connection creation time. Currently the only one is" \
> " the object-manager interface, registered with\n" \
> "\n" \
> " «conn».register_additional_standard(managed_objects = True)\n"
> for key in kwargs :
> if kwargs[key] :
> if key == "managed_objects" :
> if self._managed_objects != None :
> raise asyncio.InvalidStateError \
> (
> "object manager interface already registered"
> )
> self.register \
> (
> path = "/",
> interface = ManagedObjectsHandler(),
> fallback = True
> )
> self._managed_objects = {}
> else :
> raise TypeError("unrecognized argument keyword “%s”" % key)
> return self
Again, the #end comments don't make it any more readable *for me*.
I suspect that would be even more true for more experienced Python
programmers.
> I was looking for quite a tricky example I remember seeing on the
> ArjanCodes channel on YouTube, but I can’t find it.
In any language, if a block of code is so deeply indented that it's
confusing, you should consider refactoring it. (Though that's not
always the answer.)
I once reviewed some C code with misleading indentation. Depending on
the viewer's tab settings (4 vs 8 columns) it looked either like this:
if (condition)
this;
that;
or like this:
if (condition)
this;
that;
Of course it meant the same to the compiler.
In any language, I think it's important to use consistent indentation
that reflects the structure of the code, and to avoid mixing tabs and
spaces. (My personal preference is to use spaces exclusively, but I'll
conform to what existing code does.) As I've said elsethread, Python's
rules just force me to do what I would have done anyway.
--
Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com
void Void(void) { Void(); } /* The recursive call of the void */
Back to comp.unix.programmer | Previous | Next — Previous in thread | Next in thread | Find similar
Re: Command Languages Versus Programming Languages Javier <invalid@invalid.invalid> - 2024-04-07 00:01 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-07 02:02 +0000
Re: Command Languages Versus Programming Languages Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-04-06 20:46 -0700
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-12 15:55 +0200
Re: Command Languages Versus Programming Languages Bozo User <anthk@disroot.org> - 2024-09-30 20:04 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-30 21:04 +0000
Re: Command Languages Versus Programming Languages usuario <anthk@disroot.org> - 2024-10-01 20:18 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-02 07:10 +0000
Re: Command Languages Versus Programming Languages usuario <anthk@disroot.org> - 2024-10-02 12:52 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-02 16:00 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-09 22:25 +0100
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-10 08:38 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-10 16:09 +0100
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-10 15:34 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-10 17:55 +0100
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-10-10 19:14 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-10 21:31 +0100
Re: Command Languages Versus Programming Languages Bart <bc@freeuk.com> - 2024-10-11 00:09 +0100
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-11 15:47 +0100
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-11 15:15 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-11 15:45 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-11 15:59 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-11 16:28 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-12 08:39 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-12 13:53 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-10-12 14:50 +0000
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-10-12 15:32 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-10-12 15:51 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-12 16:36 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-13 08:18 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-13 14:29 +0200
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-13 14:03 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-13 16:21 +0200
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-13 14:56 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-13 13:43 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-13 14:54 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-13 17:17 +0200
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-13 15:30 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-13 16:02 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-13 18:28 +0200
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-13 21:10 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-14 01:16 +0200
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-14 01:45 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-14 14:13 +0200
Re: Command Languages Versus Programming Languages Nicolas George <nicolas$george@salle-s.org> - 2024-10-14 07:47 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-14 14:27 +0200
Re: Command Languages Versus Programming Languages Nicolas George <nicolas$george@salle-s.org> - 2024-10-14 23:25 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-14 21:03 +0000
Re: Command Languages Versus Programming Languages Nicolas George <nicolas$george@salle-s.org> - 2024-10-14 23:26 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-14 08:23 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-14 14:36 +0200
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-10-14 14:58 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-14 14:59 +0000
Re: Command Languages Versus Programming Languages Bart <bc@freeuk.com> - 2024-10-14 17:23 +0100
Re: Command Languages Versus Programming Languages David Brown <david.brown@hesbynett.no> - 2024-10-15 13:27 +0200
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-15 15:18 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-14 21:04 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-13 20:15 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-14 08:25 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-14 13:38 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-14 14:47 +0000
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-10-14 14:53 +0000
Re: Command Languages Versus Programming Languages David Brown <david.brown@hesbynett.no> - 2024-10-14 17:27 +0200
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-14 17:55 +0200
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-14 17:43 +0200
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-13 21:09 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-13 21:08 +0000
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-10-13 15:08 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-13 15:52 +0000
Re: Command Languages Versus Programming Languages Bart <bc@freeuk.com> - 2024-10-13 17:20 +0100
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-13 20:29 +0000
Re: Command Languages Versus Programming Languages Bart <bc@freeuk.com> - 2024-10-14 01:20 +0100
Re: On overly rigid definitions (was Re: Command Languages Versus Programming Languages) cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-14 00:58 +0000
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-10-13 15:02 +0000
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-10-13 16:31 +0000
Re: Command Languages Versus Programming Languages Bart <bc@freeuk.com> - 2024-10-13 20:06 +0100
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-10-13 20:30 +0000
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-10-11 16:37 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-11 19:01 +0100
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-12 08:40 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-11 20:58 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-12 08:42 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-12 14:37 +0100
Re: Command Languages Versus Programming Languages Christian Weisgerber <naddy@mips.inka.de> - 2024-10-12 17:49 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-13 08:20 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-13 21:25 +0100
Re: Command Languages Versus Programming Languages Bart <bc@freeuk.com> - 2024-10-12 20:50 +0100
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-12 21:25 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-13 08:22 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-13 20:33 +0000
Re: Command Languages Versus Programming Languages Bart <bc@freeuk.com> - 2024-10-11 00:07 +0100
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-11 16:15 +0100
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-11 08:17 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-11 19:37 +0100
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-11 01:33 +0000
Re: Command Languages Versus Programming Languages Eric Pozharski <apple.universe@posteo.net> - 2024-10-12 16:39 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-13 08:19 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-10-13 14:55 +0200
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-13 21:33 +0100
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-14 08:28 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-14 11:38 +0100
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-14 11:05 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-10-14 16:04 +0100
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-10-14 15:39 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-13 20:34 +0000
Re: Command Languages Versus Programming Languages Sebastian <sebastian@here.com.invalid> - 2024-11-11 07:31 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-11 10:06 +0000
Re: Command Languages Versus Programming Languages Wolfgang Agnes <wagnes@jemoni.to> - 2024-11-11 08:28 -0300
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-11-11 16:21 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-11 20:55 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-12 10:14 +0100
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-12 09:21 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-12 10:31 +0100
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-12 09:53 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-12 15:05 +0100
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-12 15:09 +0000
Re: Command Languages Versus Programming Languages Wolfgang Agnes <wagnes@jemoni.to> - 2024-11-12 13:47 -0300
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-11 21:24 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-12 10:23 +0100
Re: Command Languages Versus Programming Languages Wolfgang Agnes <wagnes@jemoni.to> - 2024-11-12 13:50 -0300
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-12 20:29 +0000
Re: Command Languages Versus Programming Languages merlyn@stonehenge.com (Randal L. Schwartz) - 2024-11-19 18:43 -0800
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-20 04:34 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-20 08:21 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-20 11:51 +0100
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-20 11:30 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-20 16:38 +0100
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-20 16:38 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-20 17:54 +0000
Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-11-20 10:03 -0800
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-21 08:18 +0000
Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-11-21 07:56 -0800
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-21 14:13 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-21 16:06 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-21 08:13 +0000
Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-11-21 07:58 -0800
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-20 17:50 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-21 14:40 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-21 15:07 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 13:30 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 15:41 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 15:52 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 17:18 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 17:35 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 17:43 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 17:43 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 17:17 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 17:48 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 18:12 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 18:48 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 19:05 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 19:24 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 19:46 +0000
Re: Command Languages Versus Programming Languages James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-11-22 17:26 -0500
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 23:06 +0000
Re: Command Languages Versus Programming Languages James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-11-22 22:49 -0500
[OT] Thunderbird Reply-button (was Re: <subject that has now for long nothing to do with the OP>) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-23 05:26 +0100
Re: [OT] Thunderbird Reply-button (was Re: <subject that has now for long nothing to do with the OP>) James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-11-23 00:04 -0500
Re: [OT] Thunderbird Reply-button Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-23 06:09 +0100
Re: [OT] Thunderbird Reply-button James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-11-23 09:24 -0500
Re: [OT] Thunderbird Reply-button Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-23 20:14 +0100
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-23 13:53 +0000
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-11-22 18:14 +0000
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-11-22 18:22 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 18:30 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 18:59 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 19:15 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 19:26 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 19:51 +0000
Re: Command Languages Versus Programming Languages mas@a4.home - 2024-11-21 15:46 +0000
Re: Command Languages Versus Programming Languages scott@slp53.sl.home (Scott Lurndal) - 2024-11-21 16:08 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-21 17:31 +0000
Re: Command Languages Versus Programming Languages Nicolas George <nicolas$george@salle-s.org> - 2024-11-21 17:53 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-21 17:19 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 14:14 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 15:27 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 21:14 +0000
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 22:09 +0000
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 23:10 +0000
Re: Command Languages Versus Programming Languages James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-11-22 17:16 -0500
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-22 22:34 +0000
Re: Command Languages Versus Programming Languages James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-11-22 23:44 -0500
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-23 14:05 +0000
Re: Command Languages Versus Programming Languages James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-11-23 10:22 -0500
Re: Command Languages Versus Programming Languages cross@spitfire.i.gajendra.net (Dan Cross) - 2024-11-23 16:38 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-22 12:14 +0100
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-22 11:56 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-22 20:33 +0100
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-11-21 19:12 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-22 10:09 +0000
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-11-22 18:18 +0000
Re: Command Languages Versus Programming Languages Muttley@dastardlyhq.com - 2024-11-23 11:40 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-22 12:17 +0100
Re: Command Languages Versus Programming Languages Kaz Kylheku <643-408-1753@kylheku.com> - 2024-11-22 18:19 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-22 20:20 +0100
Re: Command Languages Versus Programming Languages Ed Morton <mortonspam@gmail.com> - 2024-11-20 05:46 -0600
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-20 12:27 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-20 21:43 +0000
Re: Command Languages Versus Programming Languages Muttley@DastartdlyHQ.org - 2024-11-21 08:15 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-21 22:05 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-22 12:47 +0100
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-11-22 20:41 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-11-20 16:53 +0100
Re: Command Languages Versus Programming Languages Ed Morton <mortonspam@gmail.com> - 2024-11-23 18:17 -0600
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-20 12:21 +0000
Re: Command Languages Versus Programming Languages merlyn@stonehenge.com (Randal L. Schwartz) - 2024-11-21 05:38 -0800
Re: Command Languages Versus Programming Languages Rainer Weikusat <rweikusat@talktalk.net> - 2024-11-21 17:01 +0000
Re: Command Languages Versus Programming Languages John Ames <commodorejohn@gmail.com> - 2024-04-08 07:55 -0700
Re: Command Languages Versus Programming Languages Javier <invalid@invalid.invalid> - 2024-04-08 17:54 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-08 22:21 +0000
Re: Command Languages Versus Programming Languages Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-12 15:48 +0200
I did not inhale (Was: Command Languages Versus Programming Languages) gazelle@shell.xmission.com (Kenny McCormack) - 2024-04-12 14:13 +0000
Re: I did not inhale (Was: Command Languages Versus Programming Languages) gazelle@shell.xmission.com (Kenny McCormack) - 2024-04-12 14:15 +0000
Re: I did not inhale (Was: Command Languages Versus Programming Languages) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-04-15 14:28 +0200
Re: I did not inhale (Was: Command Languages Versus Programming Languages) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-04-12 16:52 +0000
Re: I did not inhale Johanne Fairchild <jfairchild@tudado.org> - 2024-04-12 20:52 -0300
Re: I did not inhale Johanne Fairchild <jfairchild@tudado.org> - 2024-04-13 08:17 -0300
Re: I did not inhale kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-08-15 19:48 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-15 23:54 +0000
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-16 01:30 +0000
Re: Python (was Re: I did not inhale) kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-08-16 15:02 +0000
Re: Python (was Re: I did not inhale) John Ames <commodorejohn@gmail.com> - 2024-08-16 09:37 -0700
Re: Python (was Re: I did not inhale) D <nospam@example.net> - 2024-08-17 11:18 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-17 09:01 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-17 12:58 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-17 21:51 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-18 10:10 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-18 08:30 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-18 12:19 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-18 15:45 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-18 18:13 +0200
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-18 16:52 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-18 20:07 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-18 23:18 +0000
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-19 08:31 +0000
Re: Python (was Re: I did not inhale) Sebastian <sebastian@here.com.invalid> - 2024-08-25 07:50 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-25 12:32 +0200
Re: Python (was Re: I did not inhale) vallor <vallor@cultnix.org> - 2024-08-25 13:41 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-25 22:02 +0000
Re: Python (was Re: I did not inhale) James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-08-25 10:48 -0400
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-25 22:00 +0000
Re: Python (was Re: I did not inhale) Richard Kettlewell <invalid@invalid.invalid> - 2024-08-18 22:15 +0100
Re: Python (was Re: I did not inhale) gazelle@shell.xmission.com (Kenny McCormack) - 2024-08-18 08:55 +0000
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-18 09:21 +0000
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-18 16:46 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-18 20:11 +0200
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-19 04:54 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-19 09:09 +0200
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-19 17:40 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-18 23:14 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-19 09:37 +0200
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-19 10:40 +0200
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-19 12:39 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-19 14:59 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-19 17:35 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-19 15:56 +0000
Re: Python (was Re: I did not inhale) Bozo User <anthk@disroot.org> - 2024-09-30 20:04 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-19 21:09 +0200
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-20 08:52 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-20 07:21 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-20 10:15 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-21 01:00 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-20 09:44 +0200
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-20 10:27 +0200
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-20 15:09 +0200
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-20 17:20 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-21 00:59 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-21 10:07 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-21 23:42 +0000
Re: Python (was Re: I did not inhale) James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-08-20 09:59 -0400
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-21 01:12 +0000
Re: Python (was Re: I did not inhale) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-19 13:14 -0700
Re: Python (was Re: I did not inhale) John Ames <commodorejohn@gmail.com> - 2024-08-19 13:30 -0700
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-20 07:22 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-19 08:45 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-19 13:03 +0200
Re: Python (was Re: I did not inhale) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-19 13:28 -0700
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-19 23:43 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-19 23:03 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-20 08:57 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-20 07:22 +0000
Re: Python (was Re: I did not inhale) D <nospam@example.net> - 2024-08-20 10:25 +0200
Re: Python (was Re: I did not inhale) vallor <vallor@cultnix.org> - 2024-08-21 06:10 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-21 06:45 +0000
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-18 08:17 +0000
Re: Python (was Re: I did not inhale) Eric Pozharski <apple.universe@posteo.net> - 2024-08-18 20:47 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-18 16:59 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-18 15:23 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-18 16:55 +0200
Re: Python (was Re: I did not inhale) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-18 12:24 -0700
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-19 09:44 +0200
Re: Python (was Re: I did not inhale) James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-08-20 10:52 -0400
Re: Python (was Re: I did not inhale) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-20 15:06 -0700
Re: Python (was Re: I did not inhale) kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-08-20 14:21 +0000
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-20 14:35 +0000
Re: Python (was Re: I did not inhale) Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2024-08-20 14:45 +0000
Re: Python (was Re: I did not inhale) kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-08-20 16:10 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-20 21:45 +0200
Re: Python (was Re: I did not inhale) kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-08-20 20:56 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-21 09:26 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-21 07:36 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-21 11:10 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-21 10:26 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-21 17:27 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-21 15:40 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-21 21:15 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-22 07:42 +0000
Re: Python (was Re: I did not inhale) D <nospam@example.net> - 2024-08-22 09:52 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-22 08:18 +0000
Re: Python (was Re: I did not inhale) D <nospam@example.net> - 2024-08-22 15:11 +0200
Re: Python (was Re: I did not inhale) Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2024-08-22 13:58 +0000
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-22 14:17 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-22 11:09 +0200
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-22 10:10 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-22 08:21 +0000
Re: Python (was Re: I did not inhale) John Ames <commodorejohn@gmail.com> - 2024-08-26 08:33 -0700
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-26 17:59 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-26 21:35 +0000
Re: Python (was Re: I did not inhale) John Ames <commodorejohn@gmail.com> - 2024-08-26 15:51 -0700
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-27 02:50 +0000
Re: Python (was Re: I did not inhale) Sebastian <sebastian@here.com.invalid> - 2024-08-27 03:21 +0000
Re: Python (was Re: I did not inhale) Richard Kettlewell <invalid@invalid.invalid> - 2024-08-27 09:39 +0100
Re: Python (was Re: I did not inhale) Bart <bc@freeuk.com> - 2024-08-27 11:26 +0100
Re: Python (was Re: I did not inhale) Richard Kettlewell <invalid@invalid.invalid> - 2024-08-27 13:46 +0100
Re: Python (was Re: I did not inhale) Sebastian <sebastian@here.com.invalid> - 2024-08-28 02:53 +0000
Re: Python (was Re: I did not inhale) scott@slp53.sl.home (Scott Lurndal) - 2024-08-28 13:57 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-27 15:10 +0200
Re: Python (was Re: I did not inhale) Bart <bc@freeuk.com> - 2024-08-27 15:18 +0100
Re: Python (was Re: I did not inhale) Andy Walker <anw@cuboid.co.uk> - 2024-08-28 23:07 +0100
Re: Python (was Re: I did not inhale) John Ames <commodorejohn@gmail.com> - 2024-08-27 08:03 -0700
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-27 18:08 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-27 20:46 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-27 21:40 +0000
Re: Python (was Re: I did not inhale) Sebastian <sebastian@here.com.invalid> - 2024-08-28 03:19 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-28 12:45 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-28 22:49 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-27 21:34 +0000
Re: Python (was Re: I did not inhale) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-27 14:49 -0700
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-27 23:28 +0000
Re: Python (was Re: I did not inhale) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-27 19:10 -0700
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-28 05:30 +0000
Re: Python (was Re: I did not inhale) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-28 13:29 -0700
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-28 23:02 +0000
Re: Python (was Re: I did not inhale) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-28 17:23 -0700
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-29 01:19 +0000
Re: Python (was Re: I did not inhale) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-28 19:19 -0700
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-30 23:52 +0000
Re: Python (was Re: I did not inhale) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-30 21:37 -0700
Re: Python (was Re: I did not inhale) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-30 21:39 -0700
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-29 14:05 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-30 23:49 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-31 17:06 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-03 00:09 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-09-03 10:46 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-03 21:56 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-09-04 09:30 +0200
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-29 14:01 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-29 23:03 +0000
Re: Python (was Re: I did not inhale) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-29 16:57 -0700
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-30 02:55 +0000
Re: Python (was Re: I did not inhale) vallor <vallor@cultnix.org> - 2024-08-30 14:01 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-30 10:01 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-28 17:48 +0000
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-28 17:43 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-28 20:48 +0200
Re: Python (was Re: I did not inhale) Bart <bc@freeuk.com> - 2024-08-28 20:27 +0100
Re: Python (was Re: I did not inhale) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-28 13:37 -0700
Re: Python (was Re: I did not inhale) Bart <bc@freeuk.com> - 2024-08-28 21:44 +0100
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-28 23:44 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-28 22:49 +0000
Re: Python (was Re: I did not inhale) Bart <bc@freeuk.com> - 2024-08-29 00:21 +0100
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-29 01:16 +0000
Re: Python (was Re: I did not inhale) Bart <bc@freeuk.com> - 2024-08-29 11:49 +0100
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-29 13:31 +0200
Re: Python (was Re: I did not inhale) Ben Bacarisse <ben@bsb.me.uk> - 2024-08-29 13:50 +0100
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-29 14:24 +0200
Re: Python (was Re: I did not inhale) John Ames <commodorejohn@gmail.com> - 2024-08-29 08:52 -0700
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-29 21:27 +0200
Re: Python (was Re: I did not inhale) John Ames <commodorejohn@gmail.com> - 2024-08-30 08:14 -0700
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-30 18:42 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-30 19:20 +0000
Re: Python (was Re: I did not inhale) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-09-14 10:16 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-09-14 09:25 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-09-15 21:43 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-29 22:57 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-30 11:38 +0200
Re: Python (was Re: I did not inhale) John Ames <commodorejohn@gmail.com> - 2024-08-30 08:28 -0700
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-30 18:54 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-30 23:42 +0000
Re: Python (was Re: I did not inhale) candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-09-07 18:30 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-07 22:48 +0000
Re: Python (was Re: I did not inhale) candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-09-26 18:00 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-26 20:36 +0000
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-09-27 08:03 +0000
Re: Python (was Re: I did not inhale) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-08-29 02:29 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-29 01:22 +0000
Re: Python (was Re: I did not inhale) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-08-29 04:30 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-29 05:50 +0000
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-29 07:28 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-29 14:30 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-29 16:19 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-29 21:29 +0200
Re: Python (was Re: I did not inhale) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-08-29 18:44 +0200
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-29 21:36 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-30 19:17 +0000
Re: Python (was Re: I did not inhale) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-09-14 09:59 +0200
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-09-15 21:47 +0200
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-09-16 07:27 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-30 02:53 +0000
Re: Python (was Re: I did not inhale) scott@slp53.sl.home (Scott Lurndal) - 2024-08-30 14:33 +0000
Re: Python (was Re: I did not inhale) D <nospam@example.net> - 2024-08-30 23:36 +0200
Re: Python (was Re: I did not inhale) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-09-14 10:06 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-14 09:34 +0000
Re: Python (was Re: I did not inhale) scott@slp53.sl.home (Scott Lurndal) - 2024-09-14 19:10 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-14 22:25 +0000
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-09-15 09:06 +0000
Re: Python (was Re: I did not inhale) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-09-16 17:28 +0200
Re: Python (was Re: I did not inhale) Bozo User <anthk@disroot.org> - 2024-09-30 20:04 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-30 22:08 +0000
Re: Python (was Re: I did not inhale) scott@slp53.sl.home (Scott Lurndal) - 2024-09-15 15:51 +0000
Re: Python (was Re: I did not inhale) D <nospam@example.net> - 2024-09-15 21:55 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-15 21:32 +0000
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-09-15 15:54 +0000
Re: Python (was Re: I did not inhale) Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-09-16 17:30 +0200
Re: Python (was Re: I did not inhale) Sebastian <sebastian@here.com.invalid> - 2024-08-28 02:48 +0000
Re: Python (was Re: I did not inhale) John Ames <commodorejohn@gmail.com> - 2024-08-28 08:25 -0700
Re: Python (was Re: I did not inhale) Bart <bc@freeuk.com> - 2024-08-28 16:41 +0100
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-28 18:23 +0200
Re: Python (was Re: I did not inhale) Richard Kettlewell <invalid@invalid.invalid> - 2024-08-28 16:41 +0100
Re: Python (was Re: I did not inhale) Bart <bc@freeuk.com> - 2024-08-26 23:51 +0100
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-27 02:49 +0000
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-26 23:32 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-22 09:02 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-22 12:47 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-23 00:19 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-23 09:19 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-23 08:29 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-23 12:04 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-23 22:52 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-23 13:36 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-21 07:38 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-21 11:11 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-21 23:43 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-22 13:00 +0200
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-22 13:30 +0200
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-22 15:28 +0000
Re: Python (was Re: I did not inhale) Bart <bc@freeuk.com> - 2024-08-22 16:56 +0100
Re: Python (was Re: I did not inhale) scott@slp53.sl.home (Scott Lurndal) - 2024-08-22 16:31 +0000
Re: Python (was Re: I did not inhale) Bart <bc@freeuk.com> - 2024-08-22 17:55 +0100
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-22 17:38 +0000
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-22 17:48 +0000
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-22 17:36 +0000
Re: Python (was Re: I did not inhale) scott@slp53.sl.home (Scott Lurndal) - 2024-08-22 17:47 +0000
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-22 20:28 +0200
Re: Python (was Re: I did not inhale) "Dmitry A. Kazakov" <mailbox@dmitry-kazakov.de> - 2024-08-22 20:28 +0200
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-22 18:54 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-23 00:15 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-23 09:33 +0200
Re: Python (was Re: I did not inhale) Bozo User <anthk@disroot.org> - 2024-09-30 20:04 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-30 22:10 +0000
Re: Python (was Re: I did not inhale) Muttley@dastardlyhq.com - 2024-08-21 07:27 +0000
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-21 11:15 +0200
Re: Python (was Re: I did not inhale) John Ames <commodorejohn@gmail.com> - 2024-08-21 08:37 -0700
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-21 21:18 +0200
Re: Python (was Re: I did not inhale) Nuno Silva <nunojsilva@invalid.invalid> - 2024-08-25 16:32 +0100
Re: Python (was Re: I did not inhale) David Brown <david.brown@hesbynett.no> - 2024-08-25 18:41 +0200
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-25 21:59 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-21 01:05 +0000
Re: Python (was Re: I did not inhale) kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-08-21 08:45 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-21 23:42 +0000
Re: Python (was Re: I did not inhale) kalevi@kolttonen.fi (Kalevi Kolttonen) - 2024-08-16 14:57 +0000
Re: Python (was Re: I did not inhale) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-16 23:27 +0000
Re: Python (was Re: I did not inhale) Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-17 01:01 +0000
Re: Command Languages Versus Programming Languages Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-13 21:54 +0000
on Perl (was: Command Languages Versus Programming Languages) Javier <invalid@invalid.invalid> - 2024-04-14 20:41 +0000
Re: on Perl (was: Command Languages Versus Programming Languages) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-14 22:41 +0000
Re: on Perl (was: Command Languages Versus Programming Languages) Blue-Maned_Hawk <bluemanedhawk@invalid.invalid> - 2024-04-15 12:43 +0000
Re: on Perl (was: Command Languages Versus Programming Languages) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-15 22:12 +0000
Re: on Perl (was: Command Languages Versus Programming Languages) John Ames <commodorejohn@gmail.com> - 2024-04-15 15:29 -0700
Re: on Perl (was: Command Languages Versus Programming Languages) Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-15 22:58 +0000
Re: on Perl (was: Command Languages Versus Programming Languages) David Brown <david.brown@hesbynett.no> - 2024-04-16 10:14 +0200
Re: on Perl (was: Command Languages Versus Programming Languages) Muttley@dastardlyhq.com - 2024-04-16 08:35 +0000
Re: on Perl (was: Command Languages Versus Programming Languages) David Brown <david.brown@hesbynett.no> - 2024-04-16 11:35 +0200
Re: on Perl Christian Weisgerber <naddy@mips.inka.de> - 2024-04-16 10:58 +0000
Re: on Perl David Brown <david.brown@hesbynett.no> - 2024-04-16 14:00 +0200
Re: on Perl Muttley@dastardlyhq.com - 2024-04-16 14:51 +0000
Re: on Perl candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-04-16 15:10 +0000
Re: on Perl Muttley@dastardlyhq.com - 2024-04-16 15:42 +0000
Re: on Perl Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-17 02:44 +0000
Re: on Perl Andreas Eder <a_eder_muc@web.de> - 2024-04-17 07:34 +0200
Re: on Perl John Ames <commodorejohn@gmail.com> - 2024-04-17 08:05 -0700
Re: on Perl David Brown <david.brown@hesbynett.no> - 2024-04-17 21:05 +0200
Re: on Perl John Ames <commodorejohn@gmail.com> - 2024-04-17 12:19 -0700
Re: on Perl David Brown <david.brown@hesbynett.no> - 2024-04-17 21:52 +0200
Re: on Perl John Ames <commodorejohn@gmail.com> - 2024-04-17 13:39 -0700
Re: on Perl Kaz Kylheku <643-408-1753@kylheku.com> - 2024-04-18 04:18 +0000
Re: on Perl David Brown <david.brown@hesbynett.no> - 2024-04-18 10:30 +0200
Re: on Perl Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-18 08:36 +0000
Re: on Perl David Brown <david.brown@hesbynett.no> - 2024-04-18 11:31 +0200
Re: on Perl Richard Harnden <richard.nospam@gmail.invalid> - 2024-04-23 14:09 +0100
(Thread has 563 articles, showing 500 — browse group in flat view)
csiph-web