Groups | Search | Server Info | Keyboard shortcuts | Login | Register


Groups > comp.lang.c > #390889

Re: Python recompile

From Keith Thompson <Keith.S.Thompson+u@gmail.com>
Newsgroups comp.lang.c
Subject Re: Python recompile
Date 2025-03-07 15:46 -0800
Organization None to speak of
Message-ID <87jz904d59.fsf@nosuchdomain.example.com> (permalink)
References (16 earlier) <vqeu5c$3imil$1@dont-email.me> <vqeun4$3iqbq$1@dont-email.me> <vqfcbe$3lkkc$1@dont-email.me> <871pv861ht.fsf@nosuchdomain.example.com> <vqfoht$3nugk$1@dont-email.me>

Show all headers | View raw


bart <bc@freeuk.com> writes:
> On 07/03/2025 20:15, Keith Thompson wrote:
>> bart <bc@freeuk.com> writes:
>> [...]
>>> I just (well, nearly 2 hours ago!) downloaded the sources for gcc. It
>>> was 0.75GB in all, 142,000 files, 5,500 folders. There are 84,000 .c
>>> files, and 4,600 .h files.
>>>
>>> It took something over 90 MINUTES to unzip, using a SSD.
>> Whatever you downloaded, it wasn't (just) the sources for gcc.
>> The latest release of gcc (14.2.0) has 58503 .c files and 4131
>> .h files, and the gcc project does not make it available as a
>> .zip file.  When you say "the sources for gcc", I presume you're
>> referring to some software package that includes gcc.  Why didn't
>> you mention that?
>
> It was from here:
>
>   https://github.com/gcc-mirror/gcc
>
> The ZIP file is the one you get on the '<> Code' pulldown menu. You
> get that on every project, whether it targets Windows or not.
>
> I've no idea where the official gcc source code resides. Googling
> 'github cpython' worked for that product; this was the first hit for
> 'github gcc'.

So you just assumed that's official.

Someone else has already replied and told you where the official gcc
source code resides.

You assumed it's on GitHub.  It isn't.  Not everything is.  The GNU
project does its own hosting.  Somebody apparently decided to set up a
mirror on GitHub, but I wouldn't rely on it.  And it might not be up to
date with the official gcc git (not GitHub) repository (though it
appears that it is).

That zip file is the latest version on the "master" branch, *not* a
release.  It isn't necessarily stable.  But if your goal in downloading
and extracting it was to make a point yet again about how difficult it
is for you, I suppose that doesn't matter.

If you wanted the gcc sources for a given release, it would be better to
download a .tar.gz or .tar.xz file from an official mirror, which you
can find via gcc.gnu.org.  GitHub's zip download feature just gives you
a snapshot of the repo, *not* an official release.  A build procedure
that works with an official tarball might not work with a git snapshot,
for reasons I won't go into here.

[...]

>> The gcc maintainers are not particularly interested in supporting
>> Windows
>
> And yet gcc exists on Windows.

Yes.

> The big thing everybody lauds gcc for is the range of targets it
> supports. But not supporting that obscure target called Win64-x64 is
> fine!

It's fine with me.  If it's not fine with you, complaining about it here
is unproductive and off topic.  (And a "target" is the system for which
gcc generates code, not necessarily the system on which gcc runs.)

[...]

-- 
Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com
void Void(void) { Void(); } /* The recursive call of the void */

Back to comp.lang.c | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Python recompile doctor@doctor.nl2k.ab.ca (The Doctor) - 2025-03-02 14:35 +0000
  Re: Python recompile Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2025-03-02 15:54 +0000
    Re: Python recompile Muttley@dastardlyhq.com - 2025-03-02 16:58 +0000
      Re: Python recompile Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2025-03-02 17:08 +0000
        Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-03 08:14 +0000
      Re: Python recompile James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-02 12:30 -0500
        Re: Python recompile scott@slp53.sl.home (Scott Lurndal) - 2025-03-02 18:35 +0000
          Re: Python recompile Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-03 10:29 -0800
        Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-03 08:13 +0000
          Re: Python recompile Richard Heathfield <rjh@cpax.org.uk> - 2025-03-03 08:31 +0000
            Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-03 10:44 +0000
              Re: Python recompile bart <bc@freeuk.com> - 2025-03-03 12:20 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-03 15:03 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-03 16:39 +0000
              Re: Python recompile Richard Heathfield <rjh@cpax.org.uk> - 2025-03-03 12:47 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-03 15:06 +0000
          Re: Python recompile James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-03 10:22 -0500
            Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-03 16:19 +0000
            Re: Python recompile geodandw <geodandw@gmail.com> - 2025-03-03 11:24 -0500
              Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-03 16:26 +0000
              Re: Python recompile James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-03 11:39 -0500
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-03 16:56 +0000
                Re: Python recompile David Brown <david.brown@hesbynett.no> - 2025-03-03 18:22 +0100
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-04 08:31 +0000
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-04 17:28 +0000
                Re: Python recompile Richard Heathfield <rjh@cpax.org.uk> - 2025-03-03 17:25 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-04 08:32 +0000
                Re: Python recompile Richard Heathfield <rjh@cpax.org.uk> - 2025-03-04 08:56 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-04 09:23 +0000
                Re: Python recompile Richard Heathfield <rjh@cpax.org.uk> - 2025-03-04 09:57 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-04 10:03 +0000
                Re: Python recompile Richard Heathfield <rjh@cpax.org.uk> - 2025-03-04 10:25 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-04 11:19 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-04 12:27 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-04 13:15 +0000
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-04 17:56 +0000
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-04 17:42 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-04 18:16 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-05 00:16 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-05 01:20 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-05 02:20 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-05 11:46 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-05 14:12 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-06 00:37 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-06 08:42 +0000
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-06 20:28 +0000
                Re: Python recompile Mark Bourne <nntp.mbourne@spamgourmet.com> - 2025-03-07 20:34 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-06 21:22 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-07 09:56 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-07 21:17 +0000
                Re: Python recompile Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-05 15:36 -0800
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-06 00:37 +0000
                Re: Python recompile Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-06 13:45 -0800
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-06 23:55 +0000
                Re: Python recompile Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-13 14:52 -0700
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-15 11:30 +0000
                Re: Python recompile Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-19 00:14 -0700
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-19 16:21 +0000
                Re: Python recompile Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-21 00:20 -0700
                Re: Python recompile antispam@fricas.org (Waldek Hebisch) - 2025-03-07 01:51 +0000
                Re: Python recompile Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-13 14:49 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-06 02:28 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-06 11:15 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-06 22:17 +0000
                Re: Python recompile David Brown <david.brown@hesbynett.no> - 2025-03-07 15:48 +0100
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-05 09:10 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-05 22:08 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-06 00:01 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-06 00:45 +0000
                Re: Python recompile antispam@fricas.org (Waldek Hebisch) - 2025-03-06 19:21 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-06 20:16 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-06 21:30 +0000
                Re: Python recompile antispam@fricas.org (Waldek Hebisch) - 2025-03-07 01:07 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-08 02:26 +0000
                Re: Python recompile antispam@fricas.org (Waldek Hebisch) - 2025-03-11 00:06 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-06 21:27 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-07 09:53 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-07 14:00 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-07 14:09 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-07 18:02 +0000
                Re: Python recompile Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-07 12:15 -0800
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-07 21:30 +0000
                Re: Python recompile scott@slp53.sl.home (Scott Lurndal) - 2025-03-07 22:47 +0000
                Re: Python recompile Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-07 15:21 -0800
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-08 05:07 +0000
                Re: Python recompile flexibeast@gmail.com - 2025-03-08 09:55 +1100
                Re: Python recompile Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-07 15:46 -0800
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-08 02:05 +0000
                Re: Python recompile Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-07 23:19 -0800
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-08 10:12 +0000
                Re: Python recompile scott@slp53.sl.home (Scott Lurndal) - 2025-03-08 14:48 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-08 06:17 +0000
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-08 19:29 +0200
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-08 18:15 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-08 13:13 -0800
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-08 23:03 +0000
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-09 01:26 +0200
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-09 02:30 +0000
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-09 11:28 +0200
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-09 14:26 +0200
                What is the source language? (Was: Python recompile) gazelle@shell.xmission.com (Kenny McCormack) - 2025-03-09 13:41 +0000
                Re: Python recompile scott@slp53.sl.home (Scott Lurndal) - 2025-03-09 17:24 +0000
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-09 18:06 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-09 21:48 +0000
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-10 15:20 +0200
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-10 15:11 +0000
                Re: Python recompile scott@slp53.sl.home (Scott Lurndal) - 2025-03-10 17:12 +0000
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-10 18:05 +0000
                Re: Python recompile scott@slp53.sl.home (Scott Lurndal) - 2025-03-10 19:26 +0000
                History of poll() API (was: Python recompile) Michael S <already5chosen@yahoo.com> - 2025-03-11 11:12 +0200
                Re: History of poll() API (was: Python recompile) scott@slp53.sl.home (Scott Lurndal) - 2025-03-11 15:07 +0000
                Re: History of poll() API (was: Python recompile) cross@spitfire.i.gajendra.net (Dan Cross) - 2025-03-11 19:10 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-11 08:31 +0000
                Re: Python recompile scott@slp53.sl.home (Scott Lurndal) - 2025-03-11 14:12 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-11 14:24 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-10 21:38 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-11 08:34 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-11 20:52 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-12 08:11 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-14 01:47 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-14 10:37 +0000
                Re: Python recompile scott@slp53.sl.home (Scott Lurndal) - 2025-03-14 15:10 +0000
                Something other than... (Was: Python recompile) gazelle@shell.xmission.com (Kenny McCormack) - 2025-03-12 12:22 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-10 21:36 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-10 14:40 -0700
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-10 21:55 +0000
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-11 00:24 +0200
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-10 17:56 -0700
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-12 22:50 -0700
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-13 16:36 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-10 23:19 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-10 17:56 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-11 03:07 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-10 21:25 -0700
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-10 21:27 -0700
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-12 14:22 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-11 06:38 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-09 16:50 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-10 01:39 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-09 19:18 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-10 06:20 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-10 12:53 -0700
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-10 20:59 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-10 14:09 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-10 21:42 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-10 14:44 -0700
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-10 14:45 -0700
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-10 14:48 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-10 23:21 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-10 19:01 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-11 03:07 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-10 21:30 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-11 06:39 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-11 14:12 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-11 22:56 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-11 17:17 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-12 00:45 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-11 20:04 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-12 03:12 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-11 21:22 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-12 06:50 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-12 13:09 -0700
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-12 22:25 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-13 20:36 +0000
                Re: Python recompile Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-13 15:07 -0700
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-13 23:17 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-13 16:45 -0700
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-13 16:49 -0700
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-13 16:58 -0700
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-13 17:01 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-14 01:48 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-14 12:46 -0700
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-14 12:48 -0700
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-14 15:13 -0700
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-14 15:14 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-14 21:20 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-14 15:06 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-14 23:03 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-14 16:25 -0700
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-14 16:29 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-15 02:31 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-14 19:35 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-15 01:16 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-14 19:30 -0700
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-14 19:33 -0700
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-14 19:38 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-15 05:56 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-15 13:49 -0700
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-16 06:41 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-16 16:20 -0700
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-09 18:00 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-12 22:55 -0700
                Re: Python recompile antispam@fricas.org (Waldek Hebisch) - 2025-03-10 10:58 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-10 16:36 +0000
                Re: Python recompile scott@slp53.sl.home (Scott Lurndal) - 2025-03-10 17:25 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-10 17:46 +0000
                Re: Python recompile scott@slp53.sl.home (Scott Lurndal) - 2025-03-10 18:12 +0000
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-10 18:00 +0000
                Re: Python recompile Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-10 18:00 -0700
                Re: Python recompile antispam@fricas.org (Waldek Hebisch) - 2025-03-11 01:33 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-11 14:24 +0000
                Re: Python recompile David Brown <david.brown@hesbynett.no> - 2025-03-11 16:06 +0100
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-11 16:23 +0000
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-11 16:49 +0000
                Re: Python recompile David Brown <david.brown@hesbynett.no> - 2025-03-11 18:09 +0100
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-11 17:47 +0000
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-11 20:09 +0200
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-11 20:17 +0200
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-11 21:37 +0000
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-12 00:58 +0200
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-12 00:43 +0000
                Motivation of tccc mainatainers (Was: Python recompile) Michael S <already5chosen@yahoo.com> - 2025-03-12 10:53 +0200
                Re: Motivation of tccc mainatainers (Was: Python recompile) bart <bc@freeuk.com> - 2025-03-12 14:04 +0000
                Re: Motivation of tccc mainatainers (Was: Python recompile) Michael S <already5chosen@yahoo.com> - 2025-03-12 16:32 +0200
                Re: Motivation of tccc mainatainers (Was: Python recompile) bart <bc@freeuk.com> - 2025-03-12 16:52 +0000
                Re: Motivation of tccc mainatainers (Was: Python recompile) Michael S <already5chosen@yahoo.com> - 2025-03-12 20:14 +0200
                Re: Motivation of tccc mainatainers (Was: Python recompile) bart <bc@freeuk.com> - 2025-03-12 21:19 +0000
                Re: Motivation of tccc mainatainers (Was: Python recompile) Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-13 00:04 +0000
                Re: Motivation of tccc mainatainers (Was: Python recompile) Michael S <already5chosen@yahoo.com> - 2025-03-12 20:25 +0200
                Re: Motivation of tccc mainatainers (Was: Python recompile) scott@slp53.sl.home (Scott Lurndal) - 2025-03-12 18:29 +0000
                Re: Motivation of tccc mainatainers (Was: Python recompile) "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-12 13:22 -0700
                Re: Motivation of tccc mainatainers (Was: Python recompile) Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-13 02:36 +0000
                Re: Motivation of tccc mainatainers (Was: Python recompile) bart <bc@freeuk.com> - 2025-03-13 12:08 +0000
                Re: Motivation of tccc mainatainers (Was: Python recompile) Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-13 22:02 +0000
                Re: Motivation of tccc mainatainers (Was: Python recompile) bart <bc@freeuk.com> - 2025-03-13 23:32 +0000
                Re: Motivation of tccc mainatainers yeti <yeti@tilde.institute> - 2025-03-14 00:47 +0042
                Re: Python recompile David Brown <david.brown@hesbynett.no> - 2025-03-11 21:20 +0100
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-11 21:18 +0000
                Re: Python recompile Richard Harnden <richard.nospam@gmail.invalid> - 2025-03-11 21:26 +0000
                Re: Python recompile Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-11 15:56 -0700
                Re: Python recompile David Brown <david.brown@hesbynett.no> - 2025-03-12 11:37 +0100
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-12 11:14 +0000
                Re: Python recompile David Brown <david.brown@hesbynett.no> - 2025-03-12 15:58 +0100
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-12 17:32 +0200
                Re: Python recompile David Brown <david.brown@hesbynett.no> - 2025-03-12 17:48 +0100
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-12 17:12 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-13 00:08 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-13 00:33 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-13 02:35 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-13 11:16 +0000
                Re: Python recompile Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-13 14:40 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-13 23:34 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-12 15:32 +0000
                Re: Python recompile David Brown <david.brown@hesbynett.no> - 2025-03-12 17:55 +0100
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-12 12:59 -0700
                Re: Python recompile scott@slp53.sl.home (Scott Lurndal) - 2025-03-11 21:51 +0000
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-11 19:34 +0200
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-11 14:18 -0700
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-12 11:08 +0200
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-12 12:58 -0700
                Re: Python recompile scott@slp53.sl.home (Scott Lurndal) - 2025-03-11 21:43 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-11 22:24 +0000
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-12 01:15 +0200
                Re: Python recompile Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-11 16:02 -0700
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-11 17:10 -0700
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-11 17:29 -0700
                Re: Python recompile Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-11 21:18 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-11 20:37 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-11 22:02 +0000
                Re: Python recompile scott@slp53.sl.home (Scott Lurndal) - 2025-03-11 23:46 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-04-10 06:54 +0000
                Re: Python recompile antispam@fricas.org (Waldek Hebisch) - 2025-03-14 00:37 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-14 02:21 +0000
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-14 11:32 +0200
                Re: Python recompile Richard Heathfield <rjh@cpax.org.uk> - 2025-03-14 09:54 +0000
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-14 12:32 +0200
                Re: Python recompile Richard Heathfield <rjh@cpax.org.uk> - 2025-03-14 14:33 +0000
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-14 19:28 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-14 23:01 +0000
                Re: Python recompile Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-14 16:30 -0700
                Re: Python recompile James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-14 23:26 -0400
                Re: Python recompile scott@slp53.sl.home (Scott Lurndal) - 2025-03-14 15:07 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-14 17:05 +0000
                Re: Python recompile scott@slp53.sl.home (Scott Lurndal) - 2025-03-14 18:00 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-14 19:04 +0000
                Re: Python recompile Richard Harnden <richard.nospam@gmail.invalid> - 2025-03-14 19:37 +0000
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-14 20:26 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-14 21:15 +0000
                Re: Python recompile Richard Harnden <richard.nospam@gmail.invalid> - 2025-03-14 21:35 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-14 21:47 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-15 01:14 +0000
                Re: Python recompile antispam@fricas.org (Waldek Hebisch) - 2025-03-16 10:06 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-16 12:15 +0000
                Re: Python recompile antispam@fricas.org (Waldek Hebisch) - 2025-03-16 14:21 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-16 15:30 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-15 01:13 +0000
                Re: Python recompile Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-14 13:04 -0700
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-14 21:43 +0000
                Re: Python recompile Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-14 15:15 -0700
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-14 23:16 +0000
                Re: Python recompile Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-14 17:26 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-15 02:30 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-15 10:18 +0000
                Re: Python recompile Muttley@dastardlyhq.com - 2025-03-15 10:42 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-15 11:50 +0000
                Re: Python recompile Muttley@dastardlyhq.com - 2025-03-15 12:03 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-15 13:39 +0000
                Re: Python recompile Muttley@dastardlyhq.com - 2025-03-15 16:53 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-15 17:51 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-16 10:06 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-16 12:06 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-17 12:07 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-17 14:25 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-17 16:32 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-17 17:10 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-18 09:53 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-18 10:59 +0000
                Re: Python recompile Richard Harnden <richard.nospam@gmail.invalid> - 2025-03-18 11:48 +0000
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-18 16:15 +0200
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-25 06:11 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-18 14:22 +0000
                Re: Python recompile antispam@fricas.org (Waldek Hebisch) - 2025-03-18 16:27 +0000
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-18 20:16 +0200
                Re: Python recompile scott@slp53.sl.home (Scott Lurndal) - 2025-03-19 13:59 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-18 20:36 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-18 16:36 +0000
                Re: Python recompile scott@slp53.sl.home (Scott Lurndal) - 2025-03-17 17:29 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-18 09:56 +0000
                Re: Python recompile Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-17 13:14 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-15 21:47 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-15 21:59 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-15 22:22 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-15 23:08 +0000
                Re: Python recompile tTh <tth@none.invalid> - 2025-03-16 08:42 +0100
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-16 08:02 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-16 11:04 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-16 23:13 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-15 02:28 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-15 01:11 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-14 19:18 +0000
                Re: Python recompile antispam@fricas.org (Waldek Hebisch) - 2025-03-16 01:58 +0000
                Re: Python recompile Muttley@dastardlyhq.com - 2025-03-08 10:12 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-08 14:09 +0000
                Re: Python recompile Muttley@dastardlyhq.com - 2025-03-08 15:51 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-08 16:46 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-08 23:02 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-09 15:37 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-11 00:55 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-11 11:21 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-12 07:00 +0000
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-11 13:49 +0200
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-12 06:56 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-09 08:47 +0000
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-09 11:43 +0200
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-09 12:16 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-09 21:54 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-09 22:59 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-11 00:57 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-11 11:43 +0000
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-11 13:59 +0200
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-11 13:47 +0000
                Re: Python recompile Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-13 14:41 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-09 21:52 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-10 08:12 +0000
                Re: Python recompile antispam@fricas.org (Waldek Hebisch) - 2025-03-10 13:00 +0000
                Re: Python recompile antispam@fricas.org (Waldek Hebisch) - 2025-03-10 11:45 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-10 17:33 +0000
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-10 18:15 +0000
                Re: Python recompile antispam@fricas.org (Waldek Hebisch) - 2025-03-11 03:38 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-08 13:14 -0800
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-08 22:59 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-09 16:55 -0700
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-10 01:40 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-09 19:09 -0700
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-09 19:17 -0700
                Re: Python recompile Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2025-03-07 11:52 -0800
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-07 21:35 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-09 16:14 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-10 23:26 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-07 21:26 +0000
                Re: Python recompile bart <bc@freeuk.com> - 2025-03-07 21:33 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-07 22:17 +0000
                Re: Python recompile antispam@fricas.org (Waldek Hebisch) - 2025-03-10 14:39 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-06 03:16 +0000
                Re: Python recompile James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-04 19:12 -0500
                Re: Python recompile gazelle@shell.xmission.com (Kenny McCormack) - 2025-03-03 23:42 +0000
                Re: Python recompile geodandw <geodandw@gmail.com> - 2025-03-03 13:29 -0500
                Re: Python recompile James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-03 16:52 -0500
              Re: Python recompile Richard Heathfield <rjh@cpax.org.uk> - 2025-03-03 17:19 +0000
                Re: Python recompile geodandw <geodandw@gmail.com> - 2025-03-03 13:33 -0500
                Re: Python recompile Richard Heathfield <rjh@cpax.org.uk> - 2025-03-03 19:15 +0000
                Re: Python recompile geodandw <geodandw@gmail.com> - 2025-03-03 18:51 -0500
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-04 00:49 +0000
                Re: Python recompile Richard Heathfield <rjh@cpax.org.uk> - 2025-03-04 02:29 +0000
                Re: Python recompile David Brown <david.brown@hesbynett.no> - 2025-03-04 09:12 +0100
                Re: Python recompile Richard Heathfield <rjh@cpax.org.uk> - 2025-03-04 11:33 +0000
                Re: Python recompile Muffley@DinkyHQ.org - 2025-03-04 12:00 +0000
                Re: Python recompile Michael S <already5chosen@yahoo.com> - 2025-03-04 15:31 +0200
              Re: Python recompile David Brown <david.brown@hesbynett.no> - 2025-03-03 18:28 +0100
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-04 08:33 +0000
                Re: Python recompile "Loris Bennett" <loris.bennett@fu-berlin.de> - 2025-03-04 10:19 +0100
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-04 18:06 +0000
                Re: Python recompile "Loris Bennett" <loris.bennett@fu-berlin.de> - 2025-03-05 07:58 +0100
                Re: Python recompile Richard Heathfield <rjh@cpax.org.uk> - 2025-03-05 07:09 +0000
                Re: Python recompile Kaz Kylheku <643-408-1753@kylheku.com> - 2025-03-05 18:54 +0000
                Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-05 02:22 +0000
              Re: Python recompile Stuart Redmann <DerTopper@web.de> - 2025-03-06 07:35 +0100
                Re: Python recompile Richard Heathfield <rjh@cpax.org.uk> - 2025-03-06 07:32 +0000
                Re: Python recompile Muttley@DastardlyHQ.org - 2025-03-06 08:39 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-06 12:40 -0800
                Re: Python recompile Richard Harnden <richard.nospam@gmail.invalid> - 2025-03-06 21:39 +0000
                Re: Python recompile "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-03-07 12:36 -0800
                Re: Python recompile James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-07 13:17 -0500
          Re: Python recompile doctor@doctor.nl2k.ab.ca (The Doctor) - 2025-03-03 16:12 +0000
  Re: Python recompile antispam@fricas.org (Waldek Hebisch) - 2025-03-02 17:54 +0000
    Re: Python recompile Richard Heathfield <rjh@cpax.org.uk> - 2025-03-02 19:15 +0000
    Re: Python recompile James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-02 13:38 -0500
      Re: Python recompile doctor@doctor.nl2k.ab.ca (The Doctor) - 2025-03-03 00:42 +0000
        Re: Python recompile doctor@doctor.nl2k.ab.ca (The Doctor) - 2025-03-03 00:46 +0000
        Re: Python recompile James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-02 22:24 -0500
      Re: Python recompile antispam@fricas.org (Waldek Hebisch) - 2025-03-03 17:20 +0000
        Re: Python recompile Richard Heathfield <rjh@cpax.org.uk> - 2025-03-03 17:28 +0000
        Re: Python recompile James Kuyper <jameskuyper@alumni.caltech.edu> - 2025-03-03 12:57 -0500
        Re: Python recompile scott@slp53.sl.home (Scott Lurndal) - 2025-03-03 18:02 +0000
        Re: Python recompile bart <bc@freeuk.com> - 2025-03-03 19:37 +0000
        Re: Python recompile Tim Rentsch <tr.17687@z991.linuxsc.com> - 2025-03-03 17:59 -0800
  Re: Python recompile Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-04 05:46 +0000

csiph-web