Re: crash while using PyCharm / Python3

2016-03-22 Thread Jonathan N. Little
Adam wrote: Thanks, but why fix if it ain't broke?:-) No reason to. -- Take care, Jonathan --- LITTLE WORKS STUDIO http://www.LittleWorksStudio.com -- https://mail.python.org/mailman/listinfo/python-list

Author of a Python Success Story Needs a Job!

2009-12-27 Thread Andrew Jonathan Fine
ner for new and completely original work, then for the love of God I implore you to contact me. A mind is a terrible thing to waste. Sincerely, Andrew Jonathan Fine BEE, MSCS, 15 years experience, 5 in Python, the rest in C/C++, about 1/3 embedded design and device drivers, and 2/3 in applica

Re: Author of a Python Success Story Needs a Job!

2009-12-28 Thread Andrew Jonathan Fine
On Dec 28, 6:21 am, Steve Holden wrote: > Andrew Jonathan Fine wrote: > > To whom it may concern, > > > I am the author of "Honeywell Avoids Documentation Costs with Python > > and other Open Standards!" > > > I was laid off by Honeywell several months

Re: How do you insert an image into Powerpoint using python/win32?

2009-06-10 Thread Cherry, Jonathan M
'Exception occurred.', (0, None, "The specified file wasn't found.", None, 0, -2147024809), None) It seems I'm passing AddPictures the wrong varibles Thanks. -- Jonathan Cherry [email protected] Student Computer Science Major (working on it) Georgia Institute of T

Re: English Idiom in Unix: Directory Recursively

2011-05-20 Thread Jonathan de Boyne Pollard
〈English Idiom in Unix: Directory Recursively〉 http://xahlee.org/comp/idiom_directory_recursively.html -- English Idiom in Unix: Directory Recursively Xah Lee, 2011-05-17 Today, let's discuss something in the category of lingustics. You know how in unix

Re: English Idiom in Unix: Directory Recursively

2011-05-20 Thread Jonathan de Boyne Pollard
AFAICS what emacs calls "recursive delete" is what the ordinary person would simply call "delete". Presumably the non-recursive delete is called simply "delete" but is actually something more complicated than delete, and you're supposed to know what that is. The "non-recursive delete" would be

Re: English Idiom in Unix: Directory Recursively

2011-05-20 Thread Jonathan de Boyne Pollard
I think what happens is that the “recursive” has become a idiom associated with directory to such a degree that the unix people don't know what the fuck they are talking about. They just simply use the word to go with directory whever they mean the whole directory. In the emacs case: “Recursiv

Re: English Idiom in Unix: Directory Recursively

2011-05-21 Thread Jonathan de Boyne Pollard
The supposed inefficiency of recursive implementations is based largely on the properties of hardware that is now obsolete. With modern processors there's no great efficiency hit. In some of the smaller microcontrollers, it's true, you do have to worry about stack overflow; but the ARM processo

Forward References

2023-09-03 Thread Jonathan Gossage via Python-list
: TypeAlias = RGB | int | str @dataclass(frozen=True, slots=True) class RGB(object): Can anyone suggest how I should fix this without reversing the statement order? pass -- Jonathan Gossage -- https://mail.python.org/mailman/listinfo/python-list

Using generator expressions

2023-09-25 Thread Jonathan Gossage via Python-list
hat I tried generator expressions both inside parentheses and not, without success. -- Jonathan Gossage -- https://mail.python.org/mailman/listinfo/python-list

Re: Using generator expressions

2023-09-25 Thread Jonathan Gossage via Python-list
Mon, Sep 25, 2023 at 11:15 AM Thomas Passin via Python-list < [email protected]> wrote: > On 9/25/2023 10:15 AM, Jonathan Gossage via Python-list wrote: > > I am having a problem using generator expressions to supply the arguments > > for a class instance initialization.

Using __new__

2024-02-17 Thread Jonathan Gossage via Python-list
, **kwargs) -> None: our_attributes = ('h', 'x') if kwargs is not None: for k, v in kwargs.items(): if k in our_attributes: setattr(self, k, v) a = SingletonExample(h=1) and I get the following result: (PRV) jona

Pip installs to unexpected place

2025-04-13 Thread Jonathan Gossage via Python-list
virtual environment*.* I expected that *sphinx* would be installed in the *site-packages* directory in the virtual environment. Instead, it was installed into the site-packages directory in */home/jonathan/.locals/lib/python3.13/site-packages* even though I did not specify *--user* to the *pip

Dynamic classes

2025-05-19 Thread Jonathan Gossage via Python-list
er, when I try to create an instance of this class with the following code: y = x('Flag1', 'Flag2') it fails with a TypeError stating that 'MyFlags' does not accept arguments. What do I have to do to make this happen?. BTW __init__(self, *args) is defined as the instance

Most "pythonic" syntax to use for an API client library

2019-04-28 Thread Jonathan Leroy - Inikup via Python-list
...any other? #3 seems to be more "pretty" to me, but I did not find any "official" recommendation online. Thanks. -- Jonathan. -- https://mail.python.org/mailman/listinfo/python-list

Re: Most "pythonic" syntax to use for an API client library

2019-05-14 Thread Jonathan Leroy - Inikup via Python-list
Le dim. 28 avr. 2019 à 20:58, Jonathan Leroy - Inikup a écrit : > Which of the following syntax do you expect an API client library to > use, and why? Thank you all for your feedbacks! I will go with #2. Le lun. 29 avr. 2019 à 05:43, DL Neil a écrit : > Doesn't the framework

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

<    2   3   4   5   6   7