RE: Module urljoin does not appear to work with scheme Gemini

2025-04-24 Thread Anders Munch via Python-list
before I realised that the lists non_hierarchical, uses_query and uses_fragment are not used. With only three options instead of six, making a strategy object is not quite as attractive. But still worth considering. regards, Anders -- https://mail.python.org/mailman/listinfo/python-list

Re: Module urljoin does not appear to work with scheme Gemini

2025-04-23 Thread Henry S. Thompson via Python-list
ac.uk/~ht/ [mail from me _always_ has a .sig like this -- mail without it is forged spam] -- https://mail.python.org/mailman/listinfo/python-list

Re: Module urljoin does not appear to work with scheme Gemini

2025-04-22 Thread Schimon Jehudah via Python-list
and Gopher. gemini://woodpeckersnest.space/~schapps/journal/2024-05-28-censoring-gemini-and-gopher.gmi Schimon On Tue, 22 Apr 2025 15:33:52 +0100 "Henry S. Thompson" wrote: > Schimon Jehudah via Python-list writes: > > > Yesterday, I have added support for a new syndication f

Re: Module urljoin does not appear to work with scheme Gemini

2025-04-22 Thread Henry S. Thompson via Python-list
Schimon Jehudah via Python-list writes: > Yesterday, I have added support for a new syndication format, Gemini > feed. I note that 'gemini' is not (yet?) a registered URI scheme: https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml ht -- Henry S. Tho

Re: Pip installs to unexpected place

2025-04-21 Thread rbowman via Python-list
5, in import matplotlib.pyplot as plt ModuleNotFoundError: No module named 'matplotlib' -- https://mail.python.org/mailman/listinfo/python-list

Re: Pip installs to unexpected place

2025-04-21 Thread songbird via Python-list
Peter J. Holzer wrote: > On 2025-04-18 13:08:36 -0400, Thomas Passin via Python-list wrote: ... >> When the system launches its application the PYTHONPATH will start with >> system site directories; local user site directories will be on the >> PYTHONPATH but since they come l

Module urljoin does not appear to work with scheme Gemini

2025-04-20 Thread Schimon Jehudah via Python-list
~schapps/journal/2025-04-20-slixfeed-gemini-and-twtxt.gmi', query='', fragment='') >>> >>> https://git.xmpp-it.net/sch/Slixfeed/src/branch/master/slixfeed/parser/gmi.py Is this a problem with the module urljoin? To whom should reports about such concern be conveyed? Please advise. Kind regards, Schimon -- https://mail.python.org/mailman/listinfo/python-list

Re: Pip installs to unexpected place

2025-04-19 Thread Thomas Passin via Python-list
On 4/19/2025 4:56 AM, Peter J. Holzer via Python-list wrote: On 2025-04-18 13:08:36 -0400, Thomas Passin via Python-list wrote: On 4/18/2025 11:38 AM, Peter J. Holzer via Python-list wrote: On 2025-04-18 13:24:28 +1200, Greg Ewing via Python-list wrote: On 18/04/25 9:41 am, Mats Wichmann

Re: Pip installs to unexpected place

2025-04-19 Thread Peter J. Holzer via Python-list
On 2025-04-18 13:08:36 -0400, Thomas Passin via Python-list wrote: > On 4/18/2025 11:38 AM, Peter J. Holzer via Python-list wrote: > > On 2025-04-18 13:24:28 +1200, Greg Ewing via Python-list wrote: > > > On 18/04/25 9:41 am, Mats Wichmann wrote: > > > > There'

Re: Pip installs to unexpected place

2025-04-19 Thread Peter J. Holzer via Python-list
On 2025-04-18 17:11:33 +0100, Oscar Benjamin via Python-list wrote: > On Fri, 18 Apr 2025 at 16:50, Peter J. Holzer via Python-list > wrote: > > > > On 2025-04-18 13:24:28 +1200, Greg Ewing via Python-list wrote: > > > On 18/04/25 9:41 am, Mats Wichmann wrote: > &

Re: Pip installs to unexpected place

2025-04-18 Thread Thomas Passin via Python-list
On 4/18/2025 11:38 AM, Peter J. Holzer via Python-list wrote: On 2025-04-18 13:24:28 +1200, Greg Ewing via Python-list wrote: On 18/04/25 9:41 am, Mats Wichmann wrote: There's just not a really great answer to this. Seems to me a system-installed application shouldn't be look

Re: Pip installs to unexpected place

2025-04-18 Thread Oscar Benjamin via Python-list
On Fri, 18 Apr 2025 at 16:50, Peter J. Holzer via Python-list wrote: > > On 2025-04-18 13:24:28 +1200, Greg Ewing via Python-list wrote: > > On 18/04/25 9:41 am, Mats Wichmann wrote: > > > There's just not a really great answer to this. > > > > Seems to me a

Re: Pip installs to unexpected place

2025-04-18 Thread Peter J. Holzer via Python-list
On 2025-04-18 13:24:28 +1200, Greg Ewing via Python-list wrote: > On 18/04/25 9:41 am, Mats Wichmann wrote: > > There's just not a really great answer to this. > > Seems to me a system-installed application shouldn't be looking in the > user's .local packages in

Re: Pip installs to unexpected place

2025-04-17 Thread Greg Ewing via Python-list
his user". -- Greg -- https://mail.python.org/mailman/listinfo/python-list

Re: Pip installs to unexpected place

2025-04-17 Thread Mats Wichmann via Python-list
On 4/17/25 15:15, Grant Edwards via Python-list wrote: On 2025-04-17, Left Right via Python-list wrote: Also... when installing stuff with pip --user, it is always a package that is not installed for the system (usually not even available for the system). How can that "break system pac

Re: Pip installs to unexpected place

2025-04-17 Thread Grant Edwards via Python-list
On 2025-04-17, Left Right via Python-list wrote: >> Also... when installing stuff with pip --user, it is always a package >> that is not installed for the system (usually not even available for >> the system). How can that "break system packages"? > > pip insta

Re: Pip installs to unexpected place

2025-04-17 Thread Left Right via Python-list
The reason it doesn't happen very often is that package maintainers kind of trust each other to be nice. There aren't really any safeguards to prevent malicious actors from doing this, but you would have to want to install their package for some reason. -- https://mail.python.org/mailman/listinfo/python-list

Re: Pip installs to unexpected place

2025-04-17 Thread Thomas Passin via Python-list
On 4/17/2025 4:58 AM, Roel Schroeven via Python-list wrote: Op 15/04/2025 om 20:31 schreef Mats Wichmann via Python-list: To be clear: you do not have to activate a virtualenv to use *Python* from it. If you just call the python by the path it's in, it figures everything out (and sets

Re: Pip installs to unexpected place

2025-04-17 Thread Roel Schroeven via Python-list
Op 15/04/2025 om 20:31 schreef Mats Wichmann via Python-list: To be clear: you do not have to activate a virtualenv to use *Python* from it. If you just call the python by the path it's in, it figures everything out (and sets some variables you can query vi sysconfig if you have reas

Re: Pip installs to unexpected place

2025-04-16 Thread Thomas Passin via Python-list
On 4/15/2025 5:38 PM, rbowman via Python-list wrote: On Tue, 15 Apr 2025 14:12:19 -0400, Thomas Passin wrote: On Linux, at least, it's standard for pip to install into the user's site-packages location if it's not invoked with admin privileges - even without --user. Pip will

Re: Pip installs to unexpected place

2025-04-16 Thread rbowman via Python-list
27;s is 24.3.1 but neither of them show '--break-system-packages' in --help. -- https://mail.python.org/mailman/listinfo/python-list

Re: Pip installs to unexpected place

2025-04-16 Thread Grant Edwards via Python-list
On 2025-04-16, Mats Wichmann via Python-list wrote: > On 4/15/25 16:07, Grant Edwards via Python-list wrote: >> On 2025-04-15, Thomas Passin via Python-list wrote: >> >>> On Linux, at least, it's standard for pip to install into the user's >>> site

Re: Pip installs to unexpected place

2025-04-15 Thread Mats Wichmann via Python-list
On 4/15/25 16:07, Grant Edwards via Python-list wrote: On 2025-04-15, Thomas Passin via Python-list wrote: On Linux, at least, it's standard for pip to install into the user's site-packages location if it's not invoked with admin privileges - even without --user. Pip will

Re: Pip installs to unexpected place

2025-04-15 Thread Grant Edwards via Python-list
On 2025-04-15, Thomas Passin via Python-list wrote: > On Linux, at least, it's standard for pip to install into the user's > site-packages location if it's not invoked with admin privileges - even > without --user. Pip will emit a message saying so. Well, that used to

Re: Pip installs to unexpected place

2025-04-15 Thread rbowman via Python-list
/lib/python3.10/site-packages' left over from earlier versions of Ubuntu. However on Fedora 42 with 3.13.2 Defaulting to user installation because normal site-packages is not writable. -- https://mail.python.org/mailman/listinfo/python-list

Re: Pip installs to unexpected place

2025-04-15 Thread Thomas Passin via Python-list
On 4/15/2025 3:41 PM, dn via Python-list wrote: Various responses have been provided but the OP has not yet replied on- list (as verified by Archive). Is this an error with the list-processor or have some posts been sent to one person only (using Reply instead of ReplyList)? There are always

Re: Pip installs to unexpected place

2025-04-15 Thread Thomas Passin via Python-list
On 4/15/2025 12:43 PM, Friedrich Romstedt via Python-list wrote: Am Mo., 14. Apr. 2025 um 01:14 Uhr schrieb Jonathan Gossage via Python-list : I am using *Python 3.13* in a virtual environment under *Ubuntu Linux 24.04* . [...] Instead, it was installed into the site-packages directory in

Re: Pip installs to unexpected place

2025-04-15 Thread dn via Python-list
-discussions - but will hearing only half of some of the conversation help them? On 14/04/25 11:33, dn via Python-list wrote: On 14/04/25 11:10, Jonathan Gossage via Python-list wrote: I am using *Python 3.13* in a virtual environment under *Ubuntu Linux 24.04* . The version of Python was compiled

Re: Pip installs to unexpected place

2025-04-15 Thread Mats Wichmann via Python-list
On 4/15/25 10:43, Friedrich Romstedt via Python-list wrote: Many people put emphasis on that you need to *activate* a virtualenv before using it, but no-one so far stressed the fact that you got Sphinx installed to ~/jonathan/.local/lib/python3.13/site-packages *without using *--user. To be

Re: Pip installs to unexpected place

2025-04-15 Thread Friedrich Romstedt via Python-list
Am Mo., 14. Apr. 2025 um 01:14 Uhr schrieb Jonathan Gossage via Python-list : > I am using *Python 3.13* in a virtual environment under *Ubuntu Linux > 24.04* > . > [...] > Instead, it was > installed into the site-packages directory in > */home/jonathan/.locals/lib/pyt

Re: Pip installs to unexpected place

2025-04-15 Thread rbowman via Python-list
te.ps1 is in the Scripts subdirectory and you do run it directly. On Linux the python in bin is usually a symlink, although you can specify it to be copied with a parameter to venv. Symlinks on Windows are problematic but the process is more or less the same. -- https://mail.python.org/mailman/listinfo/python-list

Re: Pip installs to unexpected place

2025-04-15 Thread Keith Thompson via Python-list
venv's active script (with the ~ expanded to the path of his home directory). (I'm relatively new at this. Please let me know if I've gotten any of the details wrong.) [...] -- Keith Thompson (The_Other_Keith) keith.s.thompso...@gmail.com void Void(void) { Void(); } /* The recursive call of the void */ -- https://mail.python.org/mailman/listinfo/python-list

Re: Pip installs to unexpected place

2025-04-14 Thread Thomas Passin via Python-list
On 4/14/2025 6:20 PM, Keith Thompson via Python-list wrote: Thomas Passin writes: [...] To activate a venv, you have to source its activate script, which is in the venv. First you have to mark it as executable. Then you source it - source ~/venv/gf4/bin/activate [...] No, you don't ha

Re: Pip installs to unexpected place

2025-04-14 Thread Thomas Passin via Python-list
On 4/14/2025 6:20 PM, Keith Thompson via Python-list wrote: Thomas Passin writes: [...] To activate a venv, you have to source its activate script, which is in the venv. First you have to mark it as executable. Then you source it - source ~/venv/gf4/bin/activate [...] No, you don't ha

Re: Pip installs to unexpected place

2025-04-14 Thread rbowman via Python-list
ll agree it sounds like the venv wasn't activated. -- https://mail.python.org/mailman/listinfo/python-list

Re: Pip installs to unexpected place

2025-04-14 Thread Keith Thompson via Python-list
id */ -- https://mail.python.org/mailman/listinfo/python-list

Re: Pip installs to unexpected place

2025-04-14 Thread Thomas Passin via Python-list
;> wrote: On 4/13/2025 7:10 PM, Jonathan Gossage via Python-list wrote: > I am using *Python 3.13* in a virtual environment under *Ubuntu Linux 24.04* > . > The version of Python was compiled from source code and installed with make > altinstall. I at

Re: Pip installs to unexpected place

2025-04-14 Thread rbowman via Python-list
the virtual environment*. How did you create the venv? Was it activated? I would use 'python -m pip install sphinx' but a bare pip should work. -- https://mail.python.org/mailman/listinfo/python-list

Re: Pip installs to unexpected place

2025-04-13 Thread dn via Python-list
On 14/04/25 11:10, Jonathan Gossage via Python-list wrote: I am using *Python 3.13* in a virtual environment under *Ubuntu Linux 24.04* . The version of Python was compiled from source code and installed with make altinstall. I attempted to use *pip* to install the *Sphinx* package into the

Pip installs to unexpected place

2025-04-13 Thread Jonathan Gossage via Python-list
install* command. Is this expected behavior? I wanted Sphinx to be installed in the virtual environment so that it would be accessible to all users of the virtual environment. -- Jonathan Gossage -- https://mail.python.org/mailman/listinfo/python-list

Python 3.14.0a7, 3.13.3, 3.12.10, 3.11.12, 3.10.17 and 3.9.22 are now available

2025-04-08 Thread Hugo van Kemenade via Python-list
Salgado Łukasz Langa Ned Deily Steve Dower -- https://mail.python.org/mailman/listinfo/python-list

Re: Creating a framework for bots

2025-04-05 Thread Schimon Jehudah via Python-list
ons that Slixmpp provides. https://bpa.st/PDNA. Please advise. Regards, Schimon On Tue, 18 Mar 2025 08:24:29 +0200 Schimon Jehudah via Python-list wrote: > Good day! > > My name is Schimon, and I create software in a form of XMPP contacts > (i.e. bots) with chat and visual interfa

Creating a framework for bots

2025-03-17 Thread Schimon Jehudah via Python-list
creating XMPP bots, based on the module Slixmpp, and perhaps also for IRC and MQTT. I do not know how to design a framework yet. I would appreciate guidance. Kind regards, Schimon -- https://mail.python.org/mailman/listinfo/python-list

Python 3.14.0 alpha 6

2025-03-14 Thread Hugo van Kemenade via Python-list
yourself or through organisation contributions to the Python Software Foundation. Regards from Helsinki as fresh snow falls, Your release team, Hugo van Kemenade Ned Deily Steve Dower Łukasz Langa -- https://mail.python.org/mailman/listinfo/python-list

Re: magic-wormhole 0.18.0

2025-03-13 Thread Neal Becker via Python-list
On Wed, Mar 12, 2025 at 8:33 PM meejah via Python-list < python-list@python.org> wrote: > Hello, > > I am happy to announce that magic-wormhole 0.18.0 has been released. > A visible change is the default display of QR Codes, following the > specification for file-transfer

magic-wormhole 0.18.0

2025-03-12 Thread meejah via Python-list
all contributors and users, meejah -- https://mail.python.org/mailman/listinfo/python-list

Re: "Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-11 Thread Praveen Kumar via Python-list
Yes, I have 24.3.1 version of pip in my win 11 device, there is a new version of pip available, 25.0.1 Shall I upgrade that? Kind regards, Praveen On Mon, 10 Mar 2025, 03:04 Thomas Passin via Python-list, < python-list@python.org> wrote: > On 3/9/2025 3:16 PM, Gilmeh Serda via Py

Re: "Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-11 Thread Praveen Kumar via Python-list
Is that an approved location for executables? May I know? What do you mean by approved location? Kind regards, Praveen On Mon, 10 Mar 2025, 01:25 Gilmeh Serda via Python-list, < python-list@python.org> wrote: > On Sat, 8 Mar 2025 15:59:51 +0530, Praveen Kumar wrote: > > >

Re: "Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-10 Thread Praveen Kumar via Python-list
aveen Kumar, wrote: > Yes, > > I have 24.3.1 version of pip in my win 11 device, there is a new version > of pip available, 25.0.1 > > Shall I upgrade that? > > Kind regards, > Praveen > > On Mon, 10 Mar 2025, 03:04 Thomas Passin via Python-list, < > python-list

Re: "Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-10 Thread Mats Wichmann via Python-list
On 3/10/25 10:08, Praveen Kumar via Python-list wrote: Hi Matt, I pointed out onething that related to the errors, what I pointed out is I just gone through the system 32 path in c drive and I found the python executive and other python files indicating 0 kb, and I deleted these exe, since

Re: "Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-09 Thread Thomas Passin via Python-list
On 3/9/2025 3:16 PM, Gilmeh Serda via Python-list wrote: On Sat, 8 Mar 2025 15:59:51 +0530, Praveen Kumar wrote: "C:\Users\Bharath\AppData\Local\Programs\Python\Python313\python.exe" Is that an approved location for executables? Yes, that's where a python.org install normal

Re: "Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-09 Thread Praveen Kumar via Python-list
ython.exe and python do evoke the cited error. Kind regards, Praveen On Sun, 9 Mar 2025, 17:56 Thomas Passin via Python-list, < python-list@python.org> wrote: > On 3/8/2025 10:47 PM, Praveen Kumar wrote: > > Hi Thomas and team, > > > > It's worked In non-admin pr

Re: "Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-09 Thread Thomas Passin via Python-list
still persisted. Kind regards, Sincerely, Praveen Kumar Mob: +91 9515531643 On Sun, 9 Mar 2025, 03:52 Thomas Passin via Python-list, mailto:python-list@python.org>> wrote: On 3/8/2025 5:29 AM, Praveen Kumar via Python-list wrote: > Hi Python community and membe

Re: "Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-09 Thread Praveen Kumar via Python-list
Passin via Python-list, < python-list@python.org> wrote: > On 3/8/2025 5:29 AM, Praveen Kumar via Python-list wrote: > > Hi Python community and members, > > > > I hope this email finds you well, I want you to be assisted in resolving > > this following issue. kindl

Re: "Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-08 Thread inhahe via Python-list
ly by accident? I don't know. On Sat, 8 Mar 2025 at 16:59, Praveen Kumar via Python-list < python-list@python.org> wrote: > Hi Python community and members, > > I hope this email finds you well, I want you to be assisted in resolving > this following issue. kindly look at t

Re: "Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-08 Thread Praveen Kumar via Python-list
, > Sincerely, > Praveen Kumar > Mob: +91 9515531643 > > On Sun, 9 Mar 2025, 03:52 Thomas Passin via Python-list, < > python-list@python.org> wrote: > >> On 3/8/2025 5:29 AM, Praveen Kumar via Python-list wrote: >> > Hi Python community and members, >>

Re: "Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-08 Thread Thomas Passin via Python-list
On 3/8/2025 5:29 AM, Praveen Kumar via Python-list wrote: Hi Python community and members, I hope this email finds you well, I want you to be assisted in resolving this following issue. kindly look at the below concern, """I’m running into an error where I get a 'This app

"Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-08 Thread Praveen Kumar via Python-list
olve this? Extending my request you to kindly help me out of this error and give me the root cause of this problem. *Kind regards, * *Sincerely,* *Praveen Kumar* *Mob: *+91 9515531643 -- https://mail.python.org/mailman/listinfo/python-list

SQLObject 3.13.0

2025-03-07 Thread Oleg Broytman via Python-list
= Person.selectBy(lname="Doe")[0] >>> p3 >>> pc = Person.select(Person.q.lname=="Doe").count() >>> pc 1 Oleg. -- Oleg Broytmanhttps://phdru.name/p...@phdru.name Programmers don't die, they just GOSUB without RETURN. -- https://mail.python.org/mailman/listinfo/python-list

Scipy curve_fit

2025-03-06 Thread Jorge Conrado Conforte via Python-list
_2024/NELSON/VER_NC_SHP/ler_csv_areaq_prec_plota.py:69: OptimizeWarning: Covariance of the parameters could not be estimated Please how can I resolve this error. Thanks, Conrado -- https://mail.python.org/mailman/listinfo/python-list

Re: Python recompile

2025-03-02 Thread Left Right via Python-list
I think Python compiles with fPIC by default. Something else had happened to the OPs checkout that caused these errors. OP needs to better describe what they were doing to properly understand the problem. On Sun, Mar 2, 2025 at 10:10 PM Lew Pitcher via Python-list wrote: > > > First

Re: Book recommendation? For getting up to date (Posting On Python-List Prohibited)

2025-03-02 Thread Salvador Mirzo via Python-list
d so on. Omg, I didn't know there were so many reasons... Funny is that the only real reason I really have for no reading on-screen is that I just don't want to. -- https://mail.python.org/mailman/listinfo/python-list

Re: Python recompile

2025-03-02 Thread Lew Pitcher via Python-list
ndependant code, which your linker (apparently) requires for a specific type of relocation. [snip] HTH -- Lew Pitcher "In Skills We Trust" -- https://mail.python.org/mailman/listinfo/python-list

Python recompile

2025-03-02 Thread The Doctor via Python-list
.13.a ld: error: relocation R_X86_64_32 cannot be used against local symbol; recompile with -fPIC >>> defined in /usr/local/lib/libpython3.13.a(thread.o) >>> referenced by thread_pthread.h:441 (Python/thread_pthread.h:441) >>> thread.o:(PyThread_allocate_lock) in archive >>> /usr/local/lib/libpython3.13.a ld: error: too many errors emitted, stopping now (use --error-limit=0 to see all errors) clang++: error: linker command failed with exit code 1 (use -v to see invocation) ninja: build stopped: subcommand failed. ===> Compilation failed unexpectedly. Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to the maintainer. *** Error code 1 -- Member - Liberal International This is doc...@nk.ca Ici doc...@nk.ca Yahweh, King & country!Never Satan President Republic!Beware AntiChrist rising! Look at Psalms 14 and 53 on Atheism ; Ontario vote for the Liberals - The best Anti-Trump option! -- https://mail.python.org/mailman/listinfo/python-list

Re: Book recommendation? For getting up to date (Posting On Python-List Prohibited)

2025-03-02 Thread Salvador Mirzo via Python-list
them. -- https://mail.python.org/mailman/listinfo/python-list

Machine Learning Methods for Longitudinal Data with Python – Online Course (6-9 May)

2025-02-28 Thread info--- via Python-list
7645230846 [ Bluesky ]( https://bsky.app/profile/physaliacourses.bsky.social ) [ Linkedin ]( https://www.linkedin.com/in/physalia-courses-a64418127/ ) -- https://mail.python.org/mailman/listinfo/python-list

Re: Book recommendation? For getting up to date (Posting On Python-List Prohibited)

2025-02-21 Thread rbowman via Python-list
s wonders. A good layout and talble of contents also helps. Decorators? Chapter 14, page 254, all you ever wanted to know about them. -- https://mail.python.org/mailman/listinfo/python-list

Re: Book recommendation? For getting up to date (Posting On Python-List Prohibited)

2025-02-20 Thread Salvador Mirzo via Python-list
fast. So I keep it > all online now. It's much more pleasurable (to me) to read books off-screen. -- https://mail.python.org/mailman/listinfo/python-list

Re: Book recommendation? For getting up to date

2025-02-20 Thread songbird via Python-list
ul, but many programming books are outdated and are more historical artifacts at this point. songbird -- https://mail.python.org/mailman/listinfo/python-list

Re: Book recommendation? For getting up to date

2025-02-19 Thread Mike via Python-list
On 16-02-2025 13:50, Jan Erik Moström via Python-list wrote: I'm looking for a book that would teach me the lastest and greatest parts of Python, does anyone have any recommendations? I've looked at python.org and pythonbooks.org but I couldn't decide which one to get. I us

Re: Book recommendation? For getting up to date

2025-02-19 Thread Damien Wyart via Python-list
81492056348/ -- DW -- https://mail.python.org/mailman/listinfo/python-list

Re: Book recommendation? For getting up to date

2025-02-17 Thread Mats Wichmann via Python-list
On 2/16/25 18:40, Salvador Mirzo via Python-list wrote: Jan Erik Moström writes: On 16 Feb 2025, at 20:47, rbowman via Python-list wrote: David Beasley's 'Python Distilled'. The author doesn't enumerate Python 3 features specifically but as the title suggests hits th

Re: Book recommendation? For getting up to date

2025-02-16 Thread Salvador Mirzo via Python-list
Jan Erik Moström writes: > On 16 Feb 2025, at 20:47, rbowman via Python-list wrote: > >> David Beasley's 'Python Distilled'. The author doesn't enumerate Python 3 >> features specifically but as the title suggests hits the important >> concepts. > &

Re: Book recommendation? For getting up to date

2025-02-16 Thread rbowman via Python-list
he basics but overall I enjoyed it. -- https://mail.python.org/mailman/listinfo/python-list

Re: Book recommendation? For getting up to date

2025-02-16 Thread rbowman via Python-list
er used. I also appreciated f strings when they were introduced, the walrus operator, and other enhancements. Another part of my renewed interest was the advent of many microcontrollers capable of running MicroPython, which is a subset of Python 3.x. -- https://mail.python.org/mailman/listinfo/python-list

Re: Book recommendation? For getting up to date

2025-02-16 Thread Jan Erik Moström via Python-list
On 16 Feb 2025, at 23:06, Thomas Passin via Python-list wrote: > I don't have a book for them but I think you should look into the (relatively > new) type annotation system, as well as asynchronized programming. The latter > is especially of interest because the older techni

Re: Book recommendation? For getting up to date

2025-02-16 Thread Thomas Passin via Python-list
On 2/16/2025 4:00 PM, Jan Erik Moström via Python-list wrote: On 16 Feb 2025, at 20:59, dn via Python-list wrote: When stop to think about it, this is quite a request: don't give me what I do know, do give me what I don't know! 😜 That said, you are correct: the bulk of new pu

Re: Book recommendation? For getting up to date

2025-02-16 Thread Jan Erik Moström via Python-list
On 16 Feb 2025, at 20:59, dn via Python-list wrote: > When stop to think about it, this is quite a request: > don't give me what I do know, > do give me what I don't know! 😜 > That said, you are correct: the bulk of new publications seem to (still) aim > at the Begi

Re: Book recommendation? For getting up to date

2025-02-16 Thread Jan Erik Moström via Python-list
On 16 Feb 2025, at 20:47, rbowman via Python-list wrote: > David Beasley's 'Python Distilled'. The author doesn't enumerate Python 3 > features specifically but as the title suggests hits the important > concepts. Thanks, I'll take a look = jem -- https:

Re: Book recommendation? For getting up to date

2025-02-16 Thread rbowman via Python-list
n Distilled'. The author doesn't enumerate Python 3 features specifically but as the title suggests hits the important concepts. https://www.dabeaz.com/python-distilled/ -- https://mail.python.org/mailman/listinfo/python-list

Re: Book recommendation? For getting up to date

2025-02-16 Thread dn via Python-list
On 17/02/25 01:50, Jan Erik Moström via Python-list wrote: I'm looking for a book that would teach me the lastest and greatest parts of Python, does anyone have any recommendations? I've looked at python.org and pythonbooks.org but I couldn't decide which one to get. I used to

Re: Book recommendation? For getting up to date

2025-02-16 Thread Mats Wichmann via Python-list
On 2/16/25 05:50, Jan Erik Moström via Python-list wrote: I'm looking for a book that would teach me the lastest and greatest parts of Python, does anyone have any recommendations? I've looked at python.org and pythonbooks.org but I couldn't decide which one to get. I used to

Book recommendation? For getting up to date

2025-02-16 Thread Jan Erik Moström via Python-list
language specific changes that has happened the last 10 years or so. = jem -- https://mail.python.org/mailman/listinfo/python-list

Building CPython from source, stripping executable

2025-02-11 Thread Keith Thompson via Python-list
to the Makefile. I don't think this is a new issue in 3.14.0a5; that's just where I happened to run into it. -- Keith Thompson (The_Other_Keith) keith.s.thompso...@gmail.com void Void(void) { Void(); } /* The recursive call of the void */ -- https://mail.python.org/mailman/listinfo/python-list

Python 3.14.0 alpha 5

2025-02-11 Thread Hugo van Kemenade via Python-list
contributions to the Python Software Foundation. Regards from a remarkably snowless Helsinki, Your release team, Hugo van Kemenade Ned Deily Steve Dower Łukasz Langa -- https://mail.python.org/mailman/listinfo/python-list

Re: Version of OpenSSl ?

2025-02-10 Thread Chris Angelico via Python-list
On Tue, 11 Feb 2025 at 05:56, Grant Edwards via Python-list wrote: > The -dev packages also contain the man pages for the libraries. It > surprised me at first that the man pages weren't installed by the > "normal" lib packages. But, if you're not writing/building ap

Re: Version of OpenSSl ?

2025-02-10 Thread Grant Edwards via Python-list
On 2025-02-10, Chris Angelico via Python-list wrote: > On Tue, 11 Feb 2025 at 04:04, Grant Edwards via Python-list > wrote: >> On 2025-02-09, Left Right via Python-list wrote: >> >>> You need the sources of the OpenSSL library, not the compiled library. >>>

Re: Version of OpenSSl ?

2025-02-10 Thread Chris Angelico via Python-list
On Tue, 11 Feb 2025 at 04:04, Grant Edwards via Python-list wrote: > > On 2025-02-09, Left Right via Python-list wrote: > > > You need the sources of the OpenSSL library, not the compiled library. > > On Ubuntu, the packages with sources are typically named xxx-dev where &

Re: Version of OpenSSl ?

2025-02-10 Thread Grant Edwards via Python-list
On 2025-02-09, Left Right via Python-list wrote: > You need the sources of the OpenSSL library, not the compiled library. > On Ubuntu, the packages with sources are typically named xxx-dev where > xxx is the package that provides the library. I don't have a Ubuntu > currently

Re: RE Version of OpenSSl ?

2025-02-09 Thread Keith Thompson via Python-list
ig-pend |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) ||/ Name VersionArchitecture Description +++--==-- ii libssl-dev:amd64 3.3.1-2ubuntu2 amd64Secure Sockets Layer toolkit - development files ``` then I don't understand why you'd get the "Python requires a OpenSSL 1.1.1 or newer" message. -- Keith Thompson (The_Other_Keith) keith.s.thompso...@gmail.com void Void(void) { Void(); } /* The recursive call of the void */ -- https://mail.python.org/mailman/listinfo/python-list

Re: Version of OpenSSl ?

2025-02-09 Thread Keith Thompson via Python-list
. `dpkg -l libssl-dev` will tell you whether you have it. If you don't, `sudo apt-get install libssl-dev` will install it. -- Keith Thompson (The_Other_Keith) keith.s.thompso...@gmail.com void Void(void) { Void(); } /* The recursive call of the void */ -- https://mail.python.org/mailman/listinfo/python-list

Re: RE Version of OpenSSl ?

2025-02-09 Thread Left Right via Python-list
nd atrocious error handling. On Sun, Feb 9, 2025 at 5:51 PM Vincent Vande Vyvre via Python-list wrote: > > > > > In case this helps you find the correct package to install: > > > > $ python3 -c "if True: > > > import ssl > > > print('

RE Version of OpenSSl ?

2025-02-09 Thread Vincent Vande Vyvre via Python-list
opt/lib:$LD_LIBRARY_PATH -- And rerun the compilation of 3.12.9 without problem with openssl. (*) https://openssl-library.org/source/old/1.1.1/index.html Vincent. -- https://mail.python.org/mailman/listinfo/python-list

Re: Version of OpenSSl ?

2025-02-09 Thread Jason Friedman via Python-list
u3.4 amd64 [installed] libssl3t64/noble-updates,noble-security,now 3.0.13-0ubuntu3.4 amd64 [installed,automatic] libxmlsec1t64-openssl/noble,now 1.2.39-5build2 amd64 [installed,automatic] openssl/noble-updates,noble-security,now 3.0.13-0ubuntu3.4 amd64 [installed,automatic] ssl-cert/noble,noble,now 1.1.2ubuntu1 all [installed,automatic] -- https://mail.python.org/mailman/listinfo/python-list

RE Version of OpenSSl ?

2025-02-09 Thread Vincent Vande Vyvre via Python-list
ncent -- https://mail.python.org/mailman/listinfo/python-list

Re: Version of OpenSSl ?

2025-02-09 Thread Left Right via Python-list
l-dev etc. On Sun, Feb 9, 2025 at 9:35 AM Vincent Vande Vyvre via Python-list wrote: > > Hi, > > Trying to compile Python-3.12.9 on Ubuntu-24.04 > > The compilation is complete without errors

Version of OpenSSl ?

2025-02-09 Thread Vincent Vande Vyvre via Python-list
) --- What can I do for that ? Vincent. -- https://mail.python.org/mailman/listinfo/python-list

Re: [RELEASE] Python 3.13.2 and 3.12.9 now available!

2025-02-06 Thread Rust Buckett via Python-list
Thomas Wouters writes: > A small release day today! That is to say the releases are relatively > small; the day itself was of average size, as most days are. nice. -- this is my clever sig. -- https://mail.python.org/mailman/listinfo/python-list

[RELEASE] Python 3.13.2 and 3.12.9 now available!

2025-02-04 Thread Thomas Wouters via Python-list
g/mailman/listinfo/python-list

online course - INTRODUCTION TO PYTHON PROGRAMMING FOR BIOLOGISTS - 24-27 February

2025-02-01 Thread info--- via Python-list
, Carlo Carlo Pecoraro, Ph.D Physalia-courses DIRECTOR i...@physalia-courses.org mobile: +49 17645230846 -- https://mail.python.org/mailman/listinfo/python-list

  1   2   3   4   5   6   7   8   9   10   >