Re: How to pretty mathematical formulas in Python? Similar to Mathematica formats.

2015-06-11 Thread Sebastian M Cheung via Python-list
On Thursday, June 11, 2015 at 7:33:12 PM UTC+1, Sebastian M Cheung wrote: > How to pretty mathematical formulas in Python? Similar to Mathematica formats. > > Are there good packages to prettify mathematica formulas in Python? Thanks Pythonistas -- https://mail.python.org/mailman

XCode and Python

2015-06-11 Thread Sebastian M Cheung via Python-list
For some reason I cannot build now in XCode: $ xcodebuild -find python /Users/sebc/anaconda/bin/python $python Python 2.7.10 |Anaconda 2.2.0 (x86_64)| (default, May 28 2015, 17:04:42) [GCC 4.2.1 (Apple Inc. build 5577)] on darwin Type "help", "copyright", "credi

Re: XCode and Python

2015-06-11 Thread Sebastian M Cheung via Python-list
On Thursday, June 11, 2015 at 11:07:59 PM UTC+1, Sebastian M Cheung wrote: > For some reason I cannot build now in XCode: > > $ xcodebuild -find python > /Users/sebc/anaconda/bin/python > > $python > Python 2.7.10 |Anaconda 2.2.0 (x86_64)| (default, May 28 2015, 17:04:42)

Java to Python autoconverters

2015-06-12 Thread Sebastian M Cheung via Python-list
Are these available? Any good ones to recommend? -- https://mail.python.org/mailman/listinfo/python-list

python financial data cleaning

2015-06-15 Thread Sebastian M Cheung via Python-list
How to do financial data cleaning ? Say I assume a list of 1000 finance series data in myList = Open, High, Low and Close. For missing Close Price data, What is best practice to clean data in Python -- https://mail.python.org/mailman/listinfo/python-list

Re: python financial data cleaning

2015-06-15 Thread Sebastian M Cheung via Python-list
On Monday, June 15, 2015 at 11:13:07 AM UTC+1, Sebastian M Cheung wrote: > How to do financial data cleaning ? Say I assume a list of 1000 finance > series data in myList = Open, High, Low and Close. For missing Close Price > data, What is best practice to clean data in Python Thanks

Re: python financial data cleaning

2015-06-15 Thread Sebastian M Cheung via Python-list
cally it is to clean financial series data as sometimes there are missing closing price data, misalignment of some sort etc -- https://mail.python.org/mailman/listinfo/python-list

Re: python financial data cleaning

2015-06-15 Thread Sebastian M Cheung via Python-list
On Monday, June 15, 2015 at 11:19:48 AM UTC+1, Mark Lawrence wrote: > On 15/06/2015 11:12, Sebastian M Cheung via Python-list wrote: > > How to do financial data cleaning ? Say I assume a list of 1000 finance > > series data in myList = Open, High, Low and Close. For missing Close

anaconda upgrade

2015-06-17 Thread Sebastian M Cheung via Python-list
What is the best way to upgrade an existing virtual environment anaconda from 2.7.9 to 2.7.10 -- https://mail.python.org/mailman/listinfo/python-list

Re: How to check in script if Python or Jython is used

2015-06-21 Thread Albert-Jan Roskam via Python-list
with it. There probably >> will be differences between Python and Jython. Is there a way to >> determine if a script is run by Python or Jython? Then different >> execution paths could be taken. With sys.version(_info) you do not >> get this information. >> os.path.bas

windows and file names > 256 bytes

2015-06-24 Thread Albert-Jan Roskam via Python-list
Hi, Consider the following calls, where very_long_path is more than 256 bytes: [1] os.mkdir(very_long_path) [2] os.getsize(very_long_path) [3] shutil.rmtree(very_long_path) I am using Python 2.7 and [1] and [2] fail under Windows XP [3] fails under Win7 (not sure about XP). This is even when I

Python 3.5.0 Feedback

2015-10-17 Thread Nils-Hero Lindemann via Python-list
Hallo, Zuerst mal, ein dickes Danke an alle, die an Python mitarbeiten! Hier ein paar Dinge, die mir an 3.5.0 aufgefallen sind (ich komme von 3.2.3): === Informitis === * Die Namen der Links im Startmenü und die erste Zeile der interaktiven Kommandozeile sind von (noch größerer) Informitis

Re: Correct syntax for pathological re.search()

2024-10-08 Thread Michael F. Stemper via Python-list
ver heard of that before, but it did the trick. Long story short, those double backslashes in your regex? They'll be quadrupling up in your Python string literal! for line in lines: product = re.search( "sout\\{", line ) This also worked. For now, I'll use th

Re: Correct syntax for pathological re.search()

2024-10-12 Thread Peter J. Holzer via Python-list
On 2024-10-11 17:13:07 -0400, AVI GROSS via Python-list wrote: > Is there some utility function out there that can be called to show what the > regular expression you typed in will look like by the time it is ready to be > used? I assume that by "ready to be used" you mean the

Correct syntax for pathological re.search()

2024-10-08 Thread Michael F. Stemper via Python-list
;\\sout\{", line): But the lines with that string keep coming through. What is the right syntax to properly escape the backslash and the left curly bracket? -- Michael F. Stemper No animals were harmed in the composition of this message. -- https://mail.python.org/mailman/listinfo/python-list

Re: Correct syntax for pathological re.search()

2024-10-08 Thread Pieter van Oostrum via Python-list
Oostrum www: http://pieter.vanoostrum.org/ PGP key: [8DAE142BE17999C4] -- https://mail.python.org/mailman/listinfo/python-list

Re: [Tutor] How to stop a specific thread in Python 2.7?

2024-10-11 Thread Dan Ciprus (dciprus) via Python-list
n T, E Something along those lines. Cheers, Cameron Simpson -- Dan Ciprus [ curl -L http://git.io/unix ] signature.asc Description: PGP signature -- https://mail.python.org/mailman/listinfo/python-list

Help with Streaming and Chunk Processing for Large JSON Data (60 GB) from Kenna API

2024-09-29 Thread Asif Ali Hirekumbi via Python-list
Dear Python Experts, I am working with the Kenna Application's API to retrieve vulnerability data. The API endpoint provides a single, massive JSON file in gzip format, approximately 60 GB in size. Handling such a large dataset in one go is proving to be quite challenging, especially in ter

Re: Help with Streaming and Chunk Processing for Large JSON Data (60 GB) from Kenna API

2024-09-29 Thread Abdur-Rahmaan Janhangeer via Python-list
maanJ> Mauritius On Mon, Sep 30, 2024 at 8:00 AM Asif Ali Hirekumbi via Python-list < [email protected]> wrote: > Dear Python Experts, > > I am working with the Kenna Application's API to retrieve vulnerability > data. The API endpoint provides a single, massive JSON

Re: Help with Streaming and Chunk Processing for Large JSON Data (60 GB) from Kenna API

2024-09-29 Thread Asif Ali Hirekumbi via Python-list
> > Kind Regards, > > Abdur-Rahmaan Janhangeer > about <https://compileralchemy.github.io/> | blog > <https://www.pythonkitchen.com> > github <https://github.com/Abdur-RahmaanJ> > Mauritius > > > On Mon, Sep 30, 2024 at 8:00 AM Asif Ali Hireku

[RELEASE] Python 3.14.0 alpha 1 is now available

2024-10-16 Thread Hugo van Kemenade via Python-list
It's now time for a new alpha of a new version of Python! https://www.python.org/downloads/release/python-3140a1/ **This is an early developer preview of Python 3.14** # Major new features of the 3.14 series, compared to 3.13 Python 3.14 is still in development. This release, 3.14.0a1 i

Re: Correct syntax for pathological re.search()

2024-10-18 Thread Peter J. Holzer via Python-list
On 2024-10-12 08:51:57 -0400, Thomas Passin via Python-list wrote: > On 10/12/2024 6:59 AM, Peter J. Holzer via Python-list wrote: > > On 2024-10-11 17:13:07 -0400, AVI GROSS via Python-list wrote: > > > Is there some utility function out there that can be called to sh

Re: Correct syntax for pathological re.search()

2024-10-21 Thread Peter J. Holzer via Python-list
On 2024-10-19 00:15:23 +0200, jak via Python-list wrote: > Peter J. Holzer ha scritto: > > As a trivial example, the regular expressions r"\\sout{" and r"\\sout\{" > > are equivalent (the \ before the { is redundant). Yet > > re.compile(s).pattern preserv

Re: [Tutor] How to stop a specific thread in Python 2.7?

2024-10-03 Thread Dan Ciprus (dciprus) via Python-list
I'd be interested too :-). On Thu, Sep 26, 2024 at 03:34:05AM GMT, marc nicole via Python-list wrote: Could you show a python code example of this? On Thu, 26 Sept 2024, 03:08 Cameron Simpson, wrote: On 25Sep2024 22:56, marc nicole wrote: >How to create a per-thread event in Py

Re: Printing UTF-8 mail to terminal

2024-11-05 Thread Peter J. Holzer via Python-list
On 2024-11-04 13:02:21 +0100, Loris Bennett via Python-list wrote: > "Loris Bennett" writes: > > "Loris Bennett" writes: > >> Cameron Simpson writes: > >>> On 01Nov2024 10:10, Loris Bennett wrote: > >>>>as expected. The n

Re: Printing UTF-8 mail to terminal

2024-11-02 Thread Eli the Bearded via Python-list
In comp.lang.python, Gilmeh Serda wrote: > Python 3.12.6 (main, Sep 8 2024, 13:18:56) [GCC 14.2.1 20240805] on linux > Type "help", "copyright", "credits" or "license" for more information. > >>> help('modules') >

Re: Chardet oddity

2024-10-25 Thread Albert-Jan Roskam via Python-list
On Oct 24, 2024 17:51, Roland Mueller via Python-list wrote: ke 23. lokak. 2024 klo 20.11 Albert-Jan Roskam via Python-list ( [email protected]) kirjoitti: >    Today I used chardet.detect in the repl and it returned windows-1252 >    (incorrect, beca

Call for Participation: Python devroom @ FOSDEM 2025

2024-10-28 Thread Marc-Andre Lemburg via Python-list
Call for Participation We are happy to announce that we will again be running a*Python devroom at FOSDEM 2025*. This year's edition will be exclusively in-person, and take place on February 1 and 2, with the Python devroom being held on Sunday, February 2. If you haven’t heard

Chardet oddity

2024-10-23 Thread Albert-Jan Roskam via Python-list
his method many times. # Interpreter >>> contents = open(FILENAME, "rb").read() >>> chardet.detect(content) {'encoding': 'Windows-1252', 'confidence': 0.7282676610947401, 'language': ''} # Terminal

[RELEASE] Python 3.14.0 alpha 2 is out

2024-11-19 Thread Hugo van Kemenade via Python-list
Alpha 2? But Alpha 1 only just came out! https://www.python.org/downloads/release/python-3140a2/ This is an early developer preview of Python 3.14 Major new features of the 3.14 series, compared to 3.13: Python 3.14 is still in development. This release, 3.14.0a2 is the second of seven planned

Re: How to manage accented characters in mail header?

2025-01-06 Thread Peter J. Holzer via Python-list
On 2025-01-04 19:07:57 +, Chris Green via Python-list wrote: > Stefan Ram wrote: > > Chris Green wrote or quoted: > > >From: =?utf-8?B?U8OpYmFzdGllbiBDcmlnbm9u?= > > > Is there a simple[r] way to extract just the 'real' address between > the <>

Re: No module name mutagen

2025-01-01 Thread Peter J. Holzer via Python-list
On 2024-12-31 15:00:10 -0900, Tim Johnson via Python-list wrote: > being retired for ten years, I get my butt kicked by python dependencies > every time I upgrade ubuntu. (I'm newly on 24.04) now. > > Now, after three weeks on using the following code correctly: > > from

Re: Python List is Not Dead

2024-12-28 Thread Kevin M. Wilson via Python-list
Excuse please, my failure. As I have not been following this discussion, why is the subject "Python List Is NOT Dead" a subject for discussion? Has the list been moving towards closing? KMW *** "When you pass through the waters, I w

Re: Python List is Not Dead

2024-12-30 Thread Erik Max Francis via Python-list
On 12/27/24 00:58, Chris Green via Python-list wrote: Yes, it's the one saving grace of a Discourse forum, you can use it by E-Mail and it behaves quite nicely with a text mode E-Mail client such as mutt so you can keep threads separate, follow sub-threads, etc. Not quite as good as this

Re: it's a shame... python error over error

2024-12-16 Thread Peter J. Holzer via Python-list
On 2024-12-16 08:08:46 +0100, aotto1968 via Python-list wrote: > On 13.12.24 11:36, aotto1968 wrote: > > it's a shame... > > almost every tool I touch that uses "python" in some way has some > > configuration error because apparently a __private__ python

[RELEASE] Python 3.14.0 alpha 3 is out

2024-12-17 Thread Hugo van Kemenade via Python-list
O Alpha 3, O Alpha 3, how lovely are your branches! https://www.python.org/downloads/release/python-3140a3/ This is an early developer preview of Python 3.14. Python 3.14 is still in development. This release, 3.14.0a3, is the third of seven planned alpha releases. Alpha releases are intended

Re: it's a shame... python error over error

2024-12-14 Thread Peter J. Holzer via Python-list
On 2024-12-13 11:36:01 +0100, aotto1968 via Python-list wrote: > it's a shame... > almost every tool I touch that uses "python" in some way has some > configuration error because apparently a __private__ python installation > __isn't__ properly "understood"

Re: Strategies for avoiding having to use --break-system-packages with pip

2025-01-17 Thread Peter J. Holzer via Python-list
On 2025-01-14 11:32:35 +, Chris Green via Python-list wrote: > Use a virtual environment, what do I have to do then to make using > my program (that uses tkintertable) 'transparent', i.e. I just > want to be able to run the program from the command prompt l

Re: Complete working version of cython Queue example?

2025-01-13 Thread Henry S. Thompson via Python-list
[with link] Henry S. Thompson via Python-list writes: > I've spent several days trying to get this example [1] working, using > Python3.11 and Cython 3.0.11 of Debian. > > I've copied the example files as carefully as I can, renamed some to > avoid a name clash with the

Complete working version of cython Queue example?

2025-01-13 Thread Henry S. Thompson via Python-list
I've spent several days trying to get this example [1] working, using Python3.11 and Cython 3.0.11 of Debian. I've copied the example files as carefully as I can, renamed some to avoid a name clash with the queue.py library, but the Pure Python version throws errors at compile time an

Python 3.14.0 alpha 4 is out

2025-01-14 Thread Hugo van Kemenade via Python-list
Hello, three dot fourteen dot zero alpha four! https://www.python.org/downloads/release/python-3140a4/ This is an early developer preview of Python 3.14. Python 3.14 is still in development. This release, 3.14.0a4, is the fourth of seven planned alpha releases. Alpha releases are intended to

Python List is Not Dead

2024-12-25 Thread Abdur-Rahmaan Janhangeer via Python-list
out <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- 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

Version of OpenSSl ?

2025-02-09 Thread Vincent Vande Vyvre via Python-list
Hi, Trying to compile Python-3.12.9 on Ubuntu-24.04 The compilation is complete without errors but I have this message: The necessary bits to build these optional modules were not found

RE Version of OpenSSl ?

2025-02-09 Thread Vincent Vande Vyvre via Python-list
e,noble,now 1.1.2ubuntu1 all [installed,automatic] Thanks Jason, I have near the same result of you. I need to explain the context. I'm on a new machine with a fresh install of Ubuntu 24.04 wich embed Python 3.12.3, no problem with that. As I'm maintainer of some Python modules publi

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

Python 3.14.0 alpha 5

2025-02-11 Thread Hugo van Kemenade via Python-list
Here comes the antepenultimate alpha. https://www.python.org/downloads/release/python-3140a5/ This is an early developer preview of Python 3.14. Major new features of the 3.14 series, compared to 3.13: Python 3.14 is still in development. This release, 3.14.0a5, is the fifth of seven planned

Python 3.14.0 alpha 6

2025-03-14 Thread Hugo van Kemenade via Python-list
Here comes the penultimate alpha. https://www.python.org/downloads/release/python-3140a6/ This is an early developer preview of Python 3.14 Major new features of the 3.14 series, compared to 3.13: Python 3.14 is still in development. This release, 3.14.0a6, is the sixth of seven planned alpha

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
-only phase. Python 3.14.0a7 Here comes the final alpha! This means we have just four weeks until the first beta to get those last features into 3.14 before the feature freeze on 2025-05-06! https://www.python.org/downloads/release/python-3140a7/ This is an early developer preview of Python 3.14

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: 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: Module urljoin does not appear to work with scheme Gemini

2025-04-23 Thread Henry S. Thompson via Python-list
Schimon Jehudah writes: > Is there an "ignore" option for "urljoin" to allow schemes that are not > included in the registry of the interpreter of the Python computer > language? Some approach to support future-proofing in general would seem to be in order. Given so

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: > &

Python 3.14.0 beta 1 is here!

2025-05-07 Thread Hugo van Kemenade via Python-list
Only one day late, welcome to the first beta! https://www.python.org/downloads/release/python-3140b1/ This is a beta preview of Python 3.14 Python 3.14 is still in development. This release, 3.14.0b1, is the first of four planned beta releases. Beta release previews are intended to give the

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

Book recommendation? For getting up to date

2025-02-16 Thread Jan Erik Moström via Python-list
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 be fairly good at Python, but I haven't done any ser

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 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: backslash in triple quoted string

2025-05-11 Thread Peter J. Holzer via Python-list
On 2025-05-11 12:36:31 +0200, Left Right via Python-list wrote: > Then it just means that the grammar lies. No, because the parser accepts the sequence. And it produces exactly what the description says. The program #!/usr/bin/python3 print("start") for i in range(3): print(&

Re: backslash in triple quoted string

2025-05-11 Thread Peter J. Holzer via Python-list
On 2025-05-08 08:05:54 +0200, Left Right via Python-list wrote: > Also, it appears that the change linked above is a lie: Such strong words ... > https://docs.python.org/3/reference/lexical_analysis.html#grammar-token-python-grammar-longstringitem > > According to the grammar, a

Assignment of global variables in a script.

2025-06-30 Thread Popov, Dmitry Yu via Python-list
Dear Sirs. I found the following sentence in the Python documentation: "The statements executed by the top-level invocation of the interpreter, either read from a script file or interactively, are considered part of a module called __main__<https://docs.python.org/3.11/library/__mai

Best practice for config files?

2025-05-22 Thread Michael F. Stemper via Python-list
isn't running programs and it isn't fusing atoms, it's just bending space. -- https://mail.python.org/mailman3//lists/python-list.python.org

Re: PEP Idea: Extended import syntax for aliasing module attributes

2025-06-18 Thread Abdur-Rahmaan Janhangeer via Python-list
wrote: > > > > On 17 Jun 2025, at 00:19, Omar Ahmed via Python-list < > [email protected]> wrote: > > > > Hi all, > > I would like to propose a potential addition to Python's `import` syntax > that would improve clarity and ergonomics for cases wh

Python 3.14 release candidate 1 is go!

2025-07-22 Thread Hugo van Kemenade via Python-list
It’s the first 3.14 release candidate! https://www.python.org/downloads/release/python-3140rc1/ This release, 3.14.0rc1, is the penultimate release preview. Entering the release candidate phase, only reviewed code changes which are clear bug fixes are allowed between this release candidate and

Re: [egenix-info] ANN: eGenix Antispam Bot for Telegram 0.7.1

2025-05-14 Thread Marc-Andre Lemburg via Python-list
. It reduces the admin work substantially, plus it's easy to extend, so we can always tune them or add new ones. Thanks, -- Marc-Andre Lemburg eGenix.com Professional Python Services directly from the Experts (#1, May 14 2025) >>> Python Projects, Coaching and Suppor

Python 3.14.0 beta 2 is here!

2025-05-26 Thread Hugo van Kemenade via Python-list
Here’s the second 3.14 beta. https://www.python.org/downloads/release/python-3140b2/ This is a beta preview of Python 3.14 Python 3.14 is still in development. This release, 3.14.0b2, is the second of four planned beta releases. Beta release previews are intended to give the wider community

Re: Best practice for config files?

2025-05-24 Thread Michael F. Stemper via Python-list
r it. Thanks for all of the suggestions. -- Michael F. Stemper I refuse to believe that a corporation is a person until Texas executes one. -- https://mail.python.org/mailman3//lists/python-list.python.org

Python 3.14.0rc3 is go! And release announcement news

2025-09-22 Thread Hugo van Kemenade via Python-list
Note: we also announce CPython releases at https://discuss.python.org/tag/release and https://blog.python.org, and are planning on only announcing at those places in the future, and not on this mailing list. Please see https://discuss.python.org/t/python-3-14-0rc3-is-go/103815 for the 3.14.0rc3

Re: Proposal to update Unicode handling for German sharp S (ß / ẞ) in Python’s case conversion methods

2025-10-18 Thread Mashaal Al Hammdi via Python-list
Hello friends, Can I know what’s going on?! Please في سبت، 18 أكتوبر، 2025 في 7:11 ص، كتب Chris Angelico via Python-list < [email protected]>: > On Sat, 18 Oct 2025 at 13:44, wrote: > > > > Dear Python Developers, > > > > I would like to bring attenti

Python 3.14.0 (final) is here!

2025-10-18 Thread Hugo van Kemenade via Python-list
://discuss.python.org/t/python-3-14-0-final-is-here/104210 for the 3.14.0 release notes. Regards from a colourful autumnal Helsinki, Your release team, Hugo van Kemenade Ned Deily Steve Dower Łukasz Langa -- https://mail.python.org/mailman3//lists/python-list.python.org

Re: Python 3.14.0 (final) is here!

2025-10-17 Thread Jean-François Bachelet via Python-list
Hello Python Team ^^) It's indeed VERY sad that you would kill these mailing list !  we are a lot NOT using hungry ressources stuff like discuss, discord, or others that require a web browser to read at least a mailing list is way more frugal. and internet friendly. Cheers, Jeff

Re: Python 3.14.0 (final) is here!

2025-10-07 Thread Abdur-Rahmaan Janhangeer via Python-list
Mauritius On Tue, Oct 7, 2025 at 8:06 PM Hugo van Kemenade via Python-list < [email protected]> wrote: > Note: we also announce CPython releases at > https://discuss.python.org/tag/release and https://blog.python.org, and > are planning on only announcing at those places

Re: argsparse: allowing --version without mandatory options

2025-11-04 Thread Jonathan N. Little via Python-list
"print version" > > However, with the above, I still need to specify the mandatory argument, > even if I only want to see the version. > > I guess I'll just have to change > > nargs="+" > > to > > nargs="*" > > and check explicitly whether any arguments have been given. > > Seems odd to me though that there is not a standard way of implementing > '--version' which works like '--help' does. > > Cheers, > > Loris > -- Take care, Jonathan --- LITTLE WORKS STUDIO http://www.LittleWorksStudio.com -- https://mail.python.org/mailman3//lists/python-list.python.org

Re: zipapp: add compression (method), compresslevel options from Zipfile

2025-11-15 Thread Abdur-Rahmaan Janhangeer via Python-list
You have some demo code for it? Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://compileralchemy.substack.com/> github <https://github.com/Abdur-RahmaanJ> Mauritius On Mon, 10 Nov 2025, 07:18 Mingye Wang via Python-list, < p

Possible re bug when using ".*"

2022-12-28 Thread Alexander Richert - NOAA Affiliate via Python-list
In a couple recent versions of Python (including 3.8 and 3.10), the following code: import re print(re.sub(".*", "replacement", "pattern")) yields the output "replacementreplacement". This behavior does not occur in 3.6. Which behavior is the desired one

AUTO EDITOR DIDN'T WORK

2023-06-12 Thread Real Live FootBall Tv via Python-list
I recently Installed and Uninstalled Python, hence the system was trying to get why I UNINSTALLED python. I did it because I was going to use it with another application, A VIDEO EDITING APP, Auto EDITOR but it didn't work for some reasons unknown to me. Seeing, therefore, that the app d

Re: Fwd: AUTO EDITOR DIDN'T WORK

2023-06-15 Thread Real Live FootBall Tv via Python-list
n Wed, 14 Jun 2023, 04:52 AVI GROSS via Python-list, < [email protected]> wrote: > > I think it is time to ask this topic to go find some other place to talk > to itself. > > I have seen NO reason to think any question about problems with Python has > been asked. Not

Re: Fwd: AUTO EDITOR DIDN'T WORK

2023-06-16 Thread Real Live FootBall Tv via Python-list
Thanks, I'll look into it. On Thu, 15 Jun 2023 at 10:25, Alan Gauld wrote: > On 15/06/2023 08:58, Real Live FootBall Tv via Python-list wrote: > > I have followed the instructions given on how to install the app. What I > > needed was an application to cut of silence fro

error of opening Python

2023-09-26 Thread Abdelkhelk ashref salay eabakh via Python-list
Dear Python team, This is my not first time using Python, I tried to launch Python and it showed "Python 3.11.3 (tags/v3.11.3:f3909b8, Apr 4 2023, 23:49:59) [MSC v.1934 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for mo

CODING PAGE ACCESS

2021-08-07 Thread MICHAEL J W SMITH via Python-list
I downloaded python. I selected it from the start menu. I clicked on:- Python 3-9New I got:- IDLE (Python 3.9 64-bit) Python 3.9 (64-bit) Python 3.9 Manuals (64-bit) Python 3.9 Module Docs (64-bit) I wish to access the page where I do coding.I would appreciate help, either directly, or with

Inkscape

2022-01-10 Thread Mandy and Michael Wilson via Python-list
hello Python I wonder if you can help me out please. I have recently added an extension into Inkscape called Axidraw which should enable me to hatchfill text, unforunately I am unable to use this facility as when I open a canvas in Inkscape and go to the axidraw extension I receive a

SON OF A WHORE NICHOLAS GANCIKOFF WANTS TO GET MILAN OUT OF KILLING CASH COMING FROM RUSSIAN MAFIA, CHINESE MAFIA (TRIADE), COLOMBIAN & ITALIAN AMERICAN MAFIA! THESE ARE " THE MYSTERIOUS CHINESE FUNDS

2016-07-24 Thread GIOVANNI ZIBORDI COBRAF MODENA via Python-list
Y LITTLE REACTION OF MINE TO THIS PEDOPHILE FASCIOMAFIOSO MURDERER WHO IS SILVIO BERLUSCONI. MUCH BIGGER THINGS WILL ARRIVE. I DON'T KILL. I AM NOT A BLOODTHIRSTY ASSASSIN LIKE SILVIO BERLUSCONI. BUT I'LL NEVER AND EVER BE CORNUTO AND MAZZIATO TOO!!! UN UOMO VERO, PUO' SEMPRE E SOLO ESSERE O CORNUTO O MAZZIATO. LOS DOS NUNCA! BOTH NEVER!!! -- https://mail.python.org/mailman/listinfo/python-list

SON OF A BITCH NICHOLAS GANCIKOFF WANTS TO GET MILAN OUT OF KILLING CASH COMING FROM RUSSIAN MAFIA, CHINESE MAFIA (TRIADE), COLOMBIAN & ITALIAN AMERICAN MAFIA! THESE ARE " THE MYSTERIOUS CHINESE FUNDS

2016-07-24 Thread GIOVANNI ZIBORDI COBRAF MODENA via Python-list
Y LITTLE REACTION OF MINE TO THIS PEDOPHILE FASCIOMAFIOSO MURDERER WHO IS SILVIO BERLUSCONI. MUCH BIGGER THINGS WILL ARRIVE. I DON'T KILL. I AM NOT A BLOODTHIRSTY ASSASSIN LIKE SILVIO BERLUSCONI. BUT I'LL NEVER AND EVER BE CORNUTO AND MAZZIATO TOO!!! UN UOMO VERO, PUO' SEMPRE E SOLO ESSERE O CORNUTO O MAZZIATO. LOS DOS NUNCA! BOTH NEVER!!! -- https://mail.python.org/mailman/listinfo/python-list

BASTARD MAFIOSO NICHOLAS GANCIKOFF WANTS TO GET MILAN OUT OF KILLING CASH COMING FROM RUSSIAN MAFIA, CHINESE MAFIA (TRIADE), COLOMBIAN & ITALIAN AMERICAN MAFIA! THESE ARE "THE MYSTERIOUS CHINESE FUNDS

2016-07-24 Thread GIOVANNI ZIBORDI COBRAF MODENA via Python-list
Y LITTLE REACTION OF MINE TO THIS PEDOPHILE FASCIOMAFIOSO MURDERER WHO IS SILVIO BERLUSCONI. MUCH BIGGER THINGS WILL ARRIVE. I DON'T KILL. I AM NOT A BLOODTHIRSTY ASSASSIN LIKE SILVIO BERLUSCONI. BUT I'LL NEVER AND EVER BE CORNUTO AND MAZZIATO TOO!!! UN UOMO VERO, PUO' SEMPRE E SOLO ESSERE O CORNUTO O MAZZIATO. LOS DOS NUNCA! BOTH NEVER!!! -- https://mail.python.org/mailman/listinfo/python-list

FUCKING BASTARD NICHOLAS GANCIKOFF WANTS TO GET MILAN OUT OF KILLING CASH COMING FROM RUSSIAN MAFIA, CHINESE MAFIA (TRIADE), COLOMBIAN & ITALIANAMERICAN MAFIA! THESE ARE " THE MYSTERIOUS CHINESE FUNDS

2016-07-24 Thread GIOVANNI ZIBORDI COBRAF MODENA via Python-list
Y LITTLE REACTION OF MINE TO THIS PEDOPHILE FASCIOMAFIOSO MURDERER WHO IS SILVIO BERLUSCONI. MUCH BIGGER THINGS WILL ARRIVE. I DON'T KILL. I AM NOT A BLOODTHIRSTY ASSASSIN LIKE SILVIO BERLUSCONI. BUT I'LL NEVER AND EVER BE CORNUTO AND MAZZIATO TOO!!! UN UOMO VERO, PUO' SEMPRE E SOLO ESSERE O CORNUTO O MAZZIATO. LOS DOS NUNCA! BOTH NEVER!!! -- https://mail.python.org/mailman/listinfo/python-list

BASTARD MAFIOSO NICHOLAS GANCIKOFF (SOLAR) WANTS TO GET MILAN OUT OF KILLING CASH FROM RUSSIAN MAFIA, CHINESE MAFIA (TRIADE), COLOMBIAN & ITALIANAMERICAN MAFIA! THESE ARE "THE MISTERIOUS CHINESE FUNDS

2016-07-24 Thread GIOVANNI ZIBORDI COBRAF MODENA via Python-list
Y LITTLE REACTION OF MINE TO THIS PEDOPHILE FASCIOMAFIOSO MURDERER WHO IS SILVIO BERLUSCONI. MUCH BIGGER THINGS WILL ARRIVE. I DON'T KILL. I AM NOT A BLOODTHIRSTY ASSASSIN LIKE SILVIO BERLUSCONI. BUT I'LL NEVER AND EVER BE CORNUTO AND MAZZIATO TOO!!! UN UOMO VERO, PUO' SEMPRE E SOLO ESSERE O CORNUTO O MAZZIATO. LOS DOS NUNCA! BOTH NEVER!!! -- https://mail.python.org/mailman/listinfo/python-list

FUCKING CRIMINAL SALVATORE GALATIOTO WANTS TO GET MILAN OUT OF KILLING CASH FROM RUSSIAN MAFIA, CHINESE MAFIA (TRIADE) + ITALIAN AMERICAN MAFIA! THESE ARE "THE MYSTERIOUS CHINESE FUNDS" HE HAS FOR PED

2016-07-24 Thread GIOVANNI ZIBORDI COBRAF MODENA via Python-list
TTLE REACTION OF MINE TO THIS PEDOPHILE FASCIOMAFIOSO MURDERER WHO IS SILVIO BERLUSCONI. MUCH BIGGER THINGS WILL ARRIVE. I DON'T KILL. I AM NOT A BLOODTHIRSTY ASSASSIN LIKE SILVIO BERLUSCONI. BUT I'LL NEVER AND EVER BE CORNUTO AND MAZZIATO TOO!!! UN UOMO VERO, PUO' SEMPRE E SOLO ESSERE O CORNUTO O MAZZIATO. LOS DOS NUNCA! BOTH NEVER!!! -- https://mail.python.org/mailman/listinfo/python-list

BASTARD CRIMINAL SALVATORE GALATIOTO WANTS TO GET MILAN OUT OF KILLING CASH FROM RUSSIAN MAFIA, CHINESE MAFIA (TRIADE) + ITALIAN AMERICAN MAFIA! THESE ARE "THE MYSTERIOUS CHINESE FUNDS" HE HAS FOR PED

2016-07-24 Thread GIOVANNI ZIBORDI COBRAF MODENA via Python-list
TTLE REACTION OF MINE TO THIS PEDOPHILE FASCIOMAFIOSO MURDERER WHO IS SILVIO BERLUSCONI. MUCH BIGGER THINGS WILL ARRIVE. I DON'T KILL. I AM NOT A BLOODTHIRSTY ASSASSIN LIKE SILVIO BERLUSCONI. BUT I'LL NEVER AND EVER BE CORNUTO AND MAZZIATO TOO!!! UN UOMO VERO, PUO' SEMPRE E SOLO ESSERE O CORNUTO O MAZZIATO. LOS DOS NUNCA! BOTH NEVER!!! -- https://mail.python.org/mailman/listinfo/python-list

NAZIST MAFIOSO SALVATORE GALATIOTO WANTS TO GET MILAN OUT OF EXTREMELY KILLING CASH FROM RUSSIAN MAFIA, CHINESE MAFIA (TRIADE) + ITALIANAMERICAN MAFIA! THESE ARE " THE MYSTERIOUS CHINESE FUNDS" HE HAS

2016-07-24 Thread GIOVANNI ZIBORDI COBRAF MODENA via Python-list
TTLE REACTION OF MINE TO THIS PEDOPHILE FASCIOMAFIOSO MURDERER WHO IS SILVIO BERLUSCONI. MUCH BIGGER THINGS WILL ARRIVE. I DON'T KILL. I AM NOT A BLOODTHIRSTY ASSASSIN LIKE SILVIO BERLUSCONI. BUT I'LL NEVER AND EVER BE CORNUTO AND MAZZIATO TOO!!! UN UOMO VERO, PUO' SEMPRE E SOLO ESSERE O CORNUTO O MAZZIATO. LOS DOS NUNCA! BOTH NEVER!!! -- https://mail.python.org/mailman/listinfo/python-list

BASTARD MAFIOSO SALVATORE GALATIOTO WANTS TO GET MILAN OUT OF EXTREMELY KILLING CASH FROM RUSSIAN MAFIA, CHINESE MAFIA (TRIADE) + ITALIANAMERICAN MAFIA! THESE ARE " THE MISTERIOUS CHINESE FUNDS" HE HA

2016-07-24 Thread GIOVANNI ZIBORDI COBRAF MODENA via Python-list
TTLE REACTION OF MINE TO THIS PEDOPHILE FASCIOMAFIOSO MURDERER WHO IS SILVIO BERLUSCONI. MUCH BIGGER THINGS WILL ARRIVE. I DON'T KILL. I AM NOT A BLOODTHIRSTY ASSASSIN LIKE SILVIO BERLUSCONI. BUT I'LL NEVER AND EVER BE CORNUTO AND MAZZIATO TOO!!! UN UOMO VERO, PUO' SEMPRE E SOLO ESSERE O CORNUTO O MAZZIATO. LOS DOS NUNCA! BOTH NEVER!!! -- https://mail.python.org/mailman/listinfo/python-list

STINKY MAFIOSO SAL GALATIOTO WANTS TO GET AC MILAN OUT OF EXTREMELY KILLING CASH FROM RUSSIAN MAFIA, CHINESE MAFIA (TRIADE), COLOMBIAN & ITALIANAMERICAN MAFIA! THESE ARE "THE MISTERIOUS CHINESE FUNDS"

2016-07-24 Thread GIOVANNI ZIBORDI COBRAF MODENA via Python-list
Y LITTLE REACTION OF MINE TO THIS PEDOPHILE FASCIOMAFIOSO MURDERER WHO IS SILVIO BERLUSCONI. MUCH BIGGER THINGS WILL ARRIVE. I DON'T KILL. I AM NOT A BLOODTHIRSTY ASSASSIN LIKE SILVIO BERLUSCONI. BUT I'LL NEVER AND EVER BE CORNUTO AND MAZZIATO TOO!!! UN UOMO VERO, PUO' SEMPRE E SOLO ESSERE O CORNUTO O MAZZIATO. LOS DOS NUNCA! BOTH NEVER!!! -- https://mail.python.org/mailman/listinfo/python-list

NAZIST MAFIOSO SAL GALATIOTO WANTS TO GET AC MILAN OUT OF EXTREMELY KILLING CASH FROM RUSSIAN MAFIA, CHINESE MAFIA (TRIADE), COLOMBIAN & ITALIANAMERICAN MAFIA! THESE ARE "THE MISTERIOUS CHINESE FUNDS"

2016-07-24 Thread GIOVANNI ZIBORDI COBRAF MODENA via Python-list
Y LITTLE REACTION OF MINE TO THIS PEDOPHILE FASCIOMAFIOSO MURDERER WHO IS SILVIO BERLUSCONI. MUCH BIGGER THINGS WILL ARRIVE. I DON'T KILL. I AM NOT A BLOODTHIRSTY ASSASSIN LIKE SILVIO BERLUSCONI. BUT I'LL NEVER AND EVER BE CORNUTO AND MAZZIATO TOO!!! UN UOMO VERO, PUO' SEMPRE E SOLO ESSERE O CORNUTO O MAZZIATO. LOS DOS NUNCA! BOTH NEVER!!! -- https://mail.python.org/mailman/listinfo/python-list

BASTARD NAZIST MAFIOSO SALVATORE SAL GALATIOTO WANTS TO GET MILAN OUT OF EXTREMELY KILLING CASH FROM RUSSIAN MAFIA, CHINESE MAFIA (TRIADE) + COLOMBIAN & ITALIAN AMERICAN MAFIA. THESE ARE " THE MISTERI

2016-07-24 Thread GIOVANNI ZIBORDI COBRAF MODENA via Python-list
Y LITTLE REACTION OF MINE TO THIS PEDOPHILE FASCIOMAFIOSO MURDERER WHO IS SILVIO BERLUSCONI. MUCH BIGGER THINGS WILL ARRIVE. I DON'T KILL. I AM NOT A BLOODTHIRSTY ASSASSIN LIKE SILVIO BERLUSCONI. BUT I'LL NEVER AND EVER BE CORNUTO AND MAZZIATO TOO!!! UN UOMO VERO, PUO' SEMPRE E SOLO ESSERE O CORNUTO O MAZZIATO. LOS DOS NUNCA! BOTH NEVER!!! -- https://mail.python.org/mailman/listinfo/python-list

Re: [EXTERNAL] A simple probabilistic model for COVID-19

2020-03-20 Thread Barraclough, Dominic (ext. 414) via Python-list
March 19, 2020 4:11 PM To: [email protected] Subject: [EXTERNAL] A simple probabilistic model for COVID-19 CAUTION: This email originated from outside of QVI. Do not click links or open attachments unless you recognize the sender and are expecting to receive this content from the

Cannot install python properly - python310.dll not found - no pip

2024-06-03 Thread Jay Cadet | Studio JPC via Python-list
Hi. I'm attempting to install and use stable diffusion. However, while installing python 3.10.6, I'm getting the error that the python 310.dll is not found. I've made sure the PATH option is enabled, but it makes no difference. I've also removed and reinstalled python m

[no subject]

2005-06-20 Thread python-list-bounces+archive=mail-archive . com
#! rnews 4339 Newsgroups: comp.lang.python Path: news.xs4all.nl!newsspool.news.xs4all.nl!transit.news.xs4all.nl!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!nntp.abs.net!attws2!ip.att.net!NetNews1!xyzzy!nntp From: Harry George <[EMAIL PROTECTED]> Subject: Re: Multiple instances of a

[no subject]

2005-06-20 Thread python-list-bounces+archive=mail-archive . com
seanet.com/~hgg9140/math/k6.html -- [EMAIL PROTECTED] 6-6M21 BCA CompArch Design Engineering Phone: (425) 294-4718 -- http://mail.python.org/mailman/listinfo/python-list

[no subject]

2005-06-28 Thread python-list-bounces+archive=mail-archive . com
there is judgement > required. Everything should be done the easiest way, with the > qualification that you need to understand how using someone > else's shortcut leaves you vulnerable. I agree with your comments on Python and java and IDEs. I'd like to expand on the "code in

[no subject]

2005-06-29 Thread python-list-bounces+archive=mail-archive . com
n:384026 "Adriaan Renting" <[EMAIL PROTECTED]> writes: [snip] > This doesn't mean I would recommend VB for everything. For large > projects C++ or java can both be far superior, depending on needs and > available tools and libraries. I realy like Python for small proje

<    62   63   64   65   66   67   68   >