Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.c > #391210
| From | bart <bc@freeuk.com> |
|---|---|
| Newsgroups | comp.lang.c |
| Subject | Re: Python recompile |
| Date | 2025-03-14 23:16 +0000 |
| Organization | A noiseless patient Spider |
| Message-ID | <vr2dbm$2995t$1@dont-email.me> (permalink) |
| References | (14 earlier) <G8_AP.37556$D_V4.24121@fx39.iad> <vr1uk1$1sb5s$1@dont-email.me> <874izvjs4m.fsf@nosuchdomain.example.com> <vr27td$22vgq$2@dont-email.me> <87senfi7ii.fsf@nosuchdomain.example.com> |
On 14/03/2025 22:15, Keith Thompson wrote: > bart <bc@freeuk.com> writes: >> On 14/03/2025 20:04, Keith Thompson wrote: >>> bart <bc@freeuk.com> writes: >>>> On 14/03/2025 18:00, Scott Lurndal wrote: >>>>> bart <bc@freeuk.com> writes: >>> [...] >>>>>> What I'm suggesting goes in the middle. A minimal, streamlined set of >>>>>> sources, possibly amalgamated (which helps if the user wants to >>>>>> incorporate this product into their own), with a minimal set of >>>>>> dependencies. >>>>> Why on earth would a developer do this just to make -your- life >>>>> easier? Nobody else is complaining endlessly about it. >>>> >>>> Perhaps you'd like to answer the question I posed about why bother >>>> with distributing software as binaries if building from source is so >>>> effortless. >>> Nobody said it was "effortless". You made that up. > > No response to that? > > You misrepresent what others have said, and don't reply when it's > pointed out. > > If you can cite someone here actually saying that building from source > is "effortless", I'll retract this statement. Every single post arguing against me implies that it is effortless: that is, all you have to do is type 'make'. NO ONE wants to admit to building can be a difficult process. Or they do, they will not admit of any alternative but to provide a binary. >>> I can install a binary software package on my computer without >>> needing a compiler, and it typically takes a few seconds because >>> someone else has done the work of building it. I happen to have >>> a compiler, but not everyone does. If I have the sources, I can >>> probably install a newer version than my OS makes available, and >>> perhaps I can choose some configuration options. And yes, it's a >>> bit more effort. >> >> A 'bit more effort' is an understatement. It needs more >> dependencies. It will take much longer. And it's more likely to fail. >> >> So I suggested an intermediate compromise that is suited for when your >> aim /isn't/ to work on the product yourself. > > If I understand correctly, you want one build system for developer and > a simpler one for end users. Is that accurate? > > By all means feel free to make such a thing. But having two different > build systems means they both have to be maintained. It makes it more > likely that something works correctly for the developers and fails for > end users. Wouldn't that be the case for both types of build? And which one kind is more likely to fail? You can well find that a simpler build process results in fewer issues overall. > And it's useful only for end users who build from source. I do that, > but most users don't. Even in my case, the vast majority of the > software on my system is installed from pre-built binaries via the OS's > package management system. For a more typical user, it's likely that > all of it is. > So in a sense the simpler build system you want already exists: copying > binary files to where they need to be. If a binary files exists, and if AV will let me download it, or run it. I have a problem supplying binaries to anyone who wants to run my programs on their Windows machine. So I use my own intermediate representations. They look like this: c:\qx>mc -c qc M6 Compiling qc.m---------- to qc.c c:\qx>dir qc.c 14/03/2025 22:39 1,095,211 qc.c 'mc' is a transpiler which converts dozens of modules into one C file. That C file is what is downloaded by the user. The build process on Windows is this: c:\qx\gcc qc.c You see how utterly simple it can be and how trivial it is to build? The file I generate corresponds 1:1 with the binary file that I would have prefered to provide. It's as simple as a binary, and needs only that one-line step to turn into an actual binary. The above is for Windows however; for Linux it's a bit harder: c:\qx>mc -c -linux qc -out:qu M6 Compiling qc.m---------- to qu.c Here gcc on Linux needs a couple more options, and a binary would not be an option even without AV issues. So, a build CAN be this simple. You might say, these are small products and real ones are more complicated. Well take a look at NASM: https://github.com/netwide-assembler/nasm/tree/master, and in INSTALL. It supposedly builds on Windows, but I can't make head or tail of the instructions. There are 2000 files here in two dozen directories. NASM is an x64 assembler; I have one of those too; I can also provide a single C file which can be trivially built. So your arguments are spurious. You're making excuses about why such things are not possible or are too hard while knowing little about it. >> As I showed, it is very easy when you dump the 'convoluted' build system! > > Great. Show us how you can "dump the 'convoluted' build system" for, > say, GNU coreutils. I don't know those products. Maybe they are already ten times more complex than need be. For the products I create (compilers, interpreters, assemblers, backends) there is no build system to speak of, and I've showed two examples. The build process involved download and compiling one source file. Sorry, I haven't managed to reduce it to zero source files!
Back to comp.lang.c | Previous | Next — Previous in thread | Next in thread | Find similar
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