Farewell, for now :)

2021-05-31 Thread Kyle Stanley
Hi all, Last week, I started a new thread on discuss.python.org about my intention to take a further extended break from open source to continue my mental health healing process. Just wanted to announce it in the other channels as well s

The importance of mental health

2021-05-10 Thread Kyle Stanley
Hey all, In these last few months, I have been in the process of healing from some pretty heavy past trauma. And now that I am on the road to recovery, I want to share my journey with the Python community in hopes that it may reach those that are struggling with their own mental health battles, as

Re: asyncio question

2020-11-03 Thread Kyle Stanley
On Tue, Nov 3, 2020 at 3:27 AM Frank Millman wrote: > It works, and it does look neater. But I want to start some background > tasks before starting the server, and cancel them on Ctrl+C. > > Using the 'old' method, I can wrap 'loop.run_forever()' in a > try/except/finally, check for KeyboardInt

Re: lmoments3 and scipy (again)

2020-10-13 Thread Kyle Stanley
Based on a search of the scipy docs, it looks like the function might have moved namespaces from scipy.misc.comb to scipy.special.comb ( https://docs.scipy.org/doc/scipy/reference/generated/scipy.special.comb.html?highlight=comb#scipy-special-comb) when referenced in lmoments3. Alternatively, if yo

Re: FW: NEED SOLUTION FOR ERROR

2020-10-13 Thread Kyle Stanley
It would also be helpful to list the full traceback as well as the exact command used (e.g. package attempted to install and passed arguments to pip). A bad file descriptor error sounds like there's a fair chance of it being an issue within a specific module, or something like your OS running out o

Re: List of All Error Menssages

2020-10-02 Thread Kyle Stanley
eer-driven efforts. Regards, Kyle Stanley On Thu, Oct 1, 2020 at 3:18 PM Luis Gustavo Araujo < luisaraujo.i...@gmail.com> wrote: > Hi, > Is it possible to get the list of all error messages that display in > Python? I want the full message -> type error: additional message. > &

Re: Final statement from Steering Council on politically-charged commit messages

2020-08-18 Thread Kyle Stanley
On Mon, Aug 17, 2020 at 2:37 PM Chris Angelico wrote: > Yes. I was hoping for "we should rewrite that commit", and would have > been content with "we won't rewrite it, but we don't want that > repeated". But the SC said that it is absolutely fine to write commit > messages like that. > While I'm

Re: Fwd: [BUG] missing ')' causes syntax error on next line

2020-07-22 Thread Kyle Stanley
> > *beep* *whir* > > WE ARE NOT > > *click* *whi* > > A BOT. *dial up noises* SPEAK FOR YOURSELF On Wed, Jul 22, 2020 at 6:46 PM Ethan Furman wrote: > On 7/22/20 2:57 PM, Jeff Linahan wrote: > > > Subscribing to the mailing list as per the bot's request and resending. > > *beep* *wh

Re: Questioning the effects of multiple assignment

2020-07-07 Thread Kyle Stanley
rly emphasize the importance of having some compelling real-world examples in the proposal if you decide to pursue this, as otherwise it would likely be dismissed as YAGNI.) On Tue, Jul 7, 2020 at 8:26 PM dn via Python-list wrote: > On 7/07/20 7:44 PM, Kyle Stanley wrote: > >

Re: Questioning the effects of multiple assignment

2020-07-07 Thread Kyle Stanley
> > Can you explain why these two (apparently) logical assignment processes > have been designed to realise different result-objects? The reason is because of the conventions chosen in PEP 3132, which implemented the feature in the first place. It was considered to return a tuple for the consiste

Re: [Python-ideas] asyncio: return from multiple coroutines

2020-06-25 Thread Kyle Stanley
probably be more idiomatic to call these "consumers" or "listeners" rather than "messengers"/"messagers" (the websocket docs refer to them as "consumer handlers"), but I used "messengers" to make it a bit more easily comparable to the original

Re: Newbie question about Python syntax

2019-08-22 Thread Kyle Stanley
> You are right, but it is even worse than you think. I do not have a tutorial so I have no examples to understand. The tutorial that Terry was referring to was the one on docs.python.org, here's a couple of links for the sections he was referring to: Full section on classes: https://docs.python.

Re: Which editor is suited for view a python package's source?

2019-08-20 Thread Kyle Stanley
> Then, I can only download the older version 2016.2.3 for my old 32 bit system:-( You could always use VSCode with the Python extension instead: https://code.visualstudio.com/Download. There's support for 32bit Windows as long as you're on 7, 8, or 10. I haven't used it myself though, I most use

Re: My pseudocode to Python?

2019-08-19 Thread Kyle Stanley
> Except 'list' is a bad name to use... Definitely, it's not a good practice to use any reserved names, especially built-in ones. A pretty common substitute I've seen is "ls", but it would be preferable to have something more descriptive of the elements within the list. But, for basic examples, "l

Re: How to login remote windos device using python

2019-08-19 Thread Kyle Stanley
I would recommend checking out WMI: https://pypi.org/project/WMI/ For remote connection as a named user (official WMI docs): http://timgolden.me.uk/python/wmi/tutorial.html#connecting-to-a-remote-machine-as-a-named-user Also, another example (unofficial): https://stackoverflow.com/questions/18961

Re: Which editor is suited for view a python package's source?

2019-08-19 Thread Kyle Stanley
> The most popular choices today are probably PyCharm and VSCode. I prefer > vim with the syntastic plugin (and a few other plugins including Jedi), but > I've heard good things about the other two. Personally, I've been using VSCode with the Python and Vim extensions. I've used PyCharm as well a

Re: My pseudocode to Python?

2019-08-19 Thread Kyle Stanley
;, 'f', 'g'] >>> if x: >>> mylist.insert(3, 'd') >>> mylist ['a', 'b', 'c', 'd', 'e', 'f', 'g'] Regards, Kyle Stanley (aeros16