Non sequitur: Changing subject line... WAS: Behavior of the for-else construct

2022-03-07 Thread Dennis Lee Bieber
;1mc72hll06itd6jnbgdherqb3thf1fk...@4ax.com> <20220306163951.2ozmrhfbtsktb...@hjp.at> it will still appear under the parent message; it will only thread differently if one's client merely sorts on subject and date/time. -- Wulfraed Dennis Lee B

Re: Reportlab / platypus bug?

2022-03-13 Thread Dennis Lee Bieber
original. """ My hypothesis is that rendering the "story" results in changes to the contained objects (possibly they are even "consumed" as they are rendered -- so you first attempt ends up passing an empty "story" for the second PDF).

Re: Reportlab / platypus bug?

2022-03-14 Thread Dennis Lee Bieber
self.build(tempStory, **buildKwds) #self.notify('debug',None) """ -- Wulfraed Dennis Lee Bieber AF6VN wlfr...@ix.netcom.comhttp://wlfraed.microdiversity.freeddns.org/ -- https://mail.python.org/mailman/listinfo/python-list

Re: Pycharm IDE: seeking an assist!

2022-03-21 Thread Dennis Lee Bieber
at created the environment variable -- since deleting the variable might affect how that application operates. -- Wulfraed Dennis Lee Bieber AF6VN wlfr...@ix.netcom.comhttp://wlfraed.microdiversity.freeddns.org/ -- https://mail.python.org/mailman/listinfo/python-list

Re: Difficulty in installing Python

2022-03-23 Thread Dennis Lee Bieber
y" defaulted to running. Most versions of Python also install a Tkinter script called IDLE which provides a rudimentary IDE capability. > >Kind Regards, >Reuel R. Lewis -- Wulfraed Dennis Lee Bieber AF6VN wlfr...@ix.netcom.comhttp://wlfraed.microdiversity.freeddns.org/ -- https://mail.python.org/mailman/listinfo/python-list

Re: Feature Request

2022-03-23 Thread Dennis Lee Bieber
, math.trunc -3, math.floor -4, math.ceil -3 >>> int() and .trunc() move toward 0, .floor() moves to less positive, .ceil() moves to more positive. -- Wulfraed Dennis Lee Bieber AF6VN wlfr...@ix.netcom.comhttp://wlfraed.microdiversity.freeddns.org/ -- https://mail.python.org/mailman/listinfo/python-list

Re: Python Qualification?

2022-03-29 Thread Dennis Lee Bieber
time delays, and plotting the timing of the packets intended to pass through and verifying that "classified" contents were blocked or sanitized). -- Wulfraed Dennis Lee Bieber AF6VN wlfr...@ix.netcom.comhttp://wlfraed.microdiversity.freed

Re: 'äÄöÖüÜ' in Unicode (utf-8)

2022-03-31 Thread Dennis Lee Bieber
;> >>>> ? Is there a question in there somewhere? Crystal ball is hazy... However... Note that once you encode the Unicode literal, you have a BYTE string. There are 12 bytes in that binary -- it is NOT considered Unicode at that point (only when you decode it with th

Re: 'äÄöÖüÜ' in Unicode (utf-8)

2022-03-31 Thread Dennis Lee Bieber
regretted it. > Ah yes... Unfortunately, when gmane made the mirror read-only, I had to revert to comp.lang.python... and all the junk that gets in via that and Google Groups... -- Wulfraed Dennis Lee Bieber AF6VN

Re: Exchange OWA using Python?

2022-03-31 Thread Dennis Lee Bieber
called "Outlook for the Web"). That would explain why there is no documentation of an "API"... I get the impression that any so-called API programs have had to reverse engineer (maybe using things like WireShark) the HTTP communication. -- Wulfraed

Re: pyinstaller is not a internal or external command

2022-04-05 Thread Dennis Lee Bieber
; A second possibility is that your environment is not configured to recognize .PY files as executables. -- Wulfraed Dennis Lee Bieber AF6VN wlfr...@ix.netcom.comhttp://wlfraed.microdiversity.freeddns.org/ -- https://mail.python.org/mailman/listinfo/python-list

Re: What to do to correct the error written below:

2022-04-11 Thread Dennis Lee Bieber
Wulfraed Dennis Lee Bieber AF6VN wlfr...@ix.netcom.comhttp://wlfraed.microdiversity.freeddns.org/ -- https://mail.python.org/mailman/listinfo/python-list

Re: What to do to correct the error written below:

2022-04-11 Thread Dennis Lee Bieber
i=i+1 -- Wulfraed Dennis Lee Bieber AF6VN wlfr...@ix.netcom.comhttp://wlfraed.microdiversity.freeddns.org/ -- https://mail.python.org/mailman/listinfo/python-list

Re: No shortcut Icon on Desktop

2022-04-13 Thread Dennis Lee Bieber
n junk.py Let me out of here! C:\Users\Wulfraed>rem direct invocation of script file, .py linked to Python by OS C:\Users\Wulfraed>junk.py Let me out of here! C:\Users\Wulfraed>rem direct invocation -- with .py defined as an "executable" extension on my system C:\Users\Wulfraed&g

Re: code confusion

2022-04-15 Thread Dennis Lee Bieber
ge(ls.count(maximum)): ls.remove(maximum) where _ is a "junk/temp" value that we don't care about -- we only want to loop once for EACH maximum value Or... while maximum in ls: del ls[ls.index(maximum)] -- Wulfraed Dennis Lee Bieber AF6VN wlfr...@ix.netcom.comhttp://wlfraed.microdiversity.freeddns.org/ -- https://mail.python.org/mailman/listinfo/python-list

Re: Why does datetime.timedelta only have the attributes 'days' and 'seconds'?

2022-04-16 Thread Dennis Lee Bieber
ost noticeable about UTC is the incorporation of leap-seconds. -- Wulfraed Dennis Lee Bieber AF6VN wlfr...@ix.netcom.comhttp://wlfraed.microdiversity.freeddns.org/ -- https://mail.python.org/mailman/listinfo/python-list

Re: Hey, I'm new to python so don't judge.

2017-01-05 Thread Dennis Lee Bieber
elif target > number: >result="low" >else: >result="high" >return result Count your parentheses... You should have the same number of ) as you have ( -- Wulfraed De

Re: Hey, I'm new to python so don't judge.

2017-01-06 Thread Dennis Lee Bieber
ou test for that return word? To simplify things -- don't return words from your function... change it to return +1 for high, -1 for low, and 0 for "win". Then figure out how to modify the main loop to use those integers... -- Wulfraed

Re: Hey, I'm new to python so don't judge.

2017-01-06 Thread Dennis Lee Bieber
a command line interpreter/shell. Navigate (cd ...) to where you saved the file Type "python whatever.py" Copy and paste the results of the CLI/Shell window. -- Wulfraed Dennis Lee Bieber AF6VN wlfr...@ix.netcom.comHTTP://wlfraed.home.netcom.com/ -- https://mail.python.org/mailman/listinfo/python-list

Re: Clickable hyperlinks

2017-01-06 Thread Dennis Lee Bieber
Example", and then you attempt call that list as a function passing it some unrecognized keyword "http" with a colon that Python normally uses indicate the start of a code block; said block being "//www.example.com". Try print("[Example](http://www.ex

Re: Clickable hyperlinks

2017-01-06 Thread Dennis Lee Bieber
to fetch the contents at the clickable's target) -- Wulfraed Dennis Lee Bieber AF6VN wlfr...@ix.netcom.comHTTP://wlfraed.home.netcom.com/ -- https://mail.python.org/mailman/listinfo/python-list

Re: translating foreign data

2018-06-24 Thread Dennis Lee Bieber
From: Dennis Lee Bieber On Sat, 23 Jun 2018 15:44:14 + (UTC), Steven D'Aprano declaimed the following: >1.234.567,012345678 > >which is understandable to anyone who is aware of the possibility that >comma may mean decimal separator and period the thousands separator. &

Re: Assistance Request - Issue with Installing 'pip' despite Python 3.10 Installation

2023-06-08 Thread Dennis Lee Bieber via Python-list
On Wed, 7 Jun 2023 10:36:22 -0600, Mats Wichmann declaimed the following: >I'm assuming you checked - say, with Explorer - that pip.exe really is >where you think it is? >Anyway, if you ask a Windows shell (cmd) to locate it, and it doesn't, >then your PATH is not set up correctly after all.

Re: Assistance Request - Issue with Installing 'pip' despite Python 3.10 Installation

2023-06-09 Thread Dennis Lee Bieber via Python-list
On Thu, 8 Jun 2023 17:22:22 -0400, Thomas Passin declaimed the following: >On 6/8/2023 3:14 PM, Dennis Lee Bieber via Python-list wrote: > C:\Users\Owner> >> -=-=- >> Windows PowerShell >> Copyright (C) Microsoft Corporation. All rights reserved. >> >>

Re: Assistance Request - Issue with Installing 'pip' despite Python 3.10 Installation

2023-06-11 Thread Dennis Lee Bieber via Python-list
On Sat, 10 Jun 2023 11:32:53 -0500, Eryk Sun declaimed the following: >On 6/10/23, Thomas Passin via Python-list wrote: >> >> We can find pip.exe using good old-fashioned dir (we don't need any >> new-fangled Powershell): >> >> C:\Users\tom>dir AppData\Local\Programs\Python /Aa /S /W /B |find >>

<    1   2   3