[Python-Dev] Re: Enhancing generic type documentation in the standard library

2022-03-30 Thread Christopher Barker
CHB -- Christopher Barker, PhD (Chris) Python Language Consulting - Teaching - Scientific Software Development - Desktop GUI and Web Development - wxPython, numpy, scipy, Cython ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email

[Python-Dev] Re: Make HAMT available to python script

2022-04-01 Thread Christopher Barker
that object needs to remain stable, not the implementation. And it seems that's an API that is already clearly defined. + 1 from me -- just the other day I was wishing it was there. -CHB -- Christopher Barker, PhD (Chris) Python Language Consulting - Teaching - Scientific Software Deve

[Python-Dev] Re: Make HAMT available to python script

2022-04-02 Thread Christopher Barker
, that points to an implementation that mimics the dict API (i.e. preserves order). If someone needs an implementation that has specific performance characteristics that are different, and doesn't need key order preservation, then THAT can be a special case. Which, IIUC, is what the current HAM

[Python-Dev] Re: Make HAMT available to python script

2022-04-05 Thread Christopher Barker
n.org/mailman3/lists/python-dev.python.org/ > Message archived at > https://mail.python.org/archives/list/python-dev@python.org/message/IQMBELHLSWSEYQI7BEPTJTYP47BWTBUV/ > Code of Conduct: http://python.org/psf/codeofconduct/ > -- Christopher Barker, PhD (Chris) Python Language Consulting

[Python-Dev] Re: About PEPs being discussed on Discourse

2022-04-07 Thread Christopher Barker
ng it -- and frankly, this list (and python-ideas) should probably be retired, or turned into an announcement-only list -- having the current split is the worst option of all. -CHB -- Christopher Barker, PhD (Chris) Python Language Consulting - Teaching - Scientific Software Development - D

[Python-Dev] Re: Importing a submodule doesn't always set an attribute on its parent

2022-04-09 Thread Christopher Barker
hon-dev@python.org > To unsubscribe send an email to python-dev-le...@python.org > https://mail.python.org/mailman3/lists/python-dev.python.org/ > Message archived at > https://mail.python.org/archives/list/python-dev@python.org/message/IRXLI6XANNQTOGSBQGOFX25UJD6J4SGJ/ > Code of Con

[Python-Dev] Re: Declarative imports

2022-04-12 Thread Christopher Barker
erms of what is returned by the equivalent statement. I really don't to > try and teach that distinction to a newcomer. > Frankly, there are already an overwhelming-to-a-newcomer number of ways to import modules. We really don't want nore! -CHB -- Christopher Barker, PhD (Chris)

[Python-Dev] Re: Migration plan for the distutils removal in Python 3.12

2022-05-10 Thread Christopher Barker
ail to python-dev-le...@python.org > https://mail.python.org/mailman3/lists/python-dev.python.org/ > Message archived at > https://mail.python.org/archives/list/python-dev@python.org/message/T43OZ4LWUT7QBENWPKIA3LFT52GWJV3Q/ > Code of Conduct: http://python.org/psf/codeofconduct/ > -- C

[Python-Dev] Re: Switching to Discourse

2022-07-21 Thread Christopher Barker
OT: Does anyone else find it very odd to call a communication system “discord”? dis·cord /ˈdiskôrd/ *noun* 1. 1. disagreement between people. "a prosperous family who showed no signs of discord" “Naming things is hard” — but really? -CHB -- Christopher Barker,

[Python-Dev] Re: Switching to Discourse

2022-07-22 Thread Christopher Barker
maybe one more big report / feature request. And it’s one more pro for GH discussions- GH is built for code, so much more likely to support it well. Coincidentally, I just noticed GH discussions today — the setuptools project is using it. -CHB -- Christopher Barker, PhD (Chris) Python

[Python-Dev] Re: A proposal to modify `None` so that it hashes to a constant

2022-11-29 Thread Christopher Barker
gt; Steve > ___ > Python-Dev mailing list -- python-dev@python.org > To unsubscribe send an email to python-dev-le...@python.org > https://mail.python.org/mailman3/lists/python-dev.python.org/ > Message archived at > https://mail.python.o

[Python-Dev] Re: Python Launcher not Installed on Windows Machine

2022-12-15 Thread Christopher Barker
an3/lists/python-dev.python.org/ > Message archived at > https://mail.python.org/archives/list/python-dev@python.org/message/SNOKIVOL55FOJZ5J2CPXFNL5LZJHTX7O/ > Code of Conduct: http://python.org/psf/codeofconduct/ > -- Christopher Barker, PhD (Chris) Python Language Consulting - Teac

[Python-Dev] Re: Feature Request: Adding Way to Annotate Class Variables Distinct from Instance Variables

2022-12-21 Thread Christopher Barker
n-Dev mailing list -- python-dev@python.org > To unsubscribe send an email to python-dev-le...@python.org > https://mail.python.org/mailman3/lists/python-dev.python.org/ > Message archived at > https://mail.python.org/archives/list/python-dev@python.org/message/7XFIE6YGRGO3XKCR7MZGDN6CCGU

[Python-Dev] Re: Debugging of native extensions on windows

2023-03-13 Thread Christopher Barker
> > there is a solution already, which escaped me? > > > > ___ > Python-Dev mailing list -- python-dev@python.org > To unsubscribe send an email to python-dev-le...@python.org > https://mail.python.org/mailman3/lists/python-dev.p

[Python-Dev] Universal newlines, and the gzip module.

2009-01-29 Thread Christopher Barker
. Should it raise an exception? Somehow I think it would be better to ignore the 'U', but maybe that's only because of the issue I happen to be looking at now. That later seems a better idea -- this issue could certainly come up in other places than the gzip module, but

Re: [Python-Dev] Universal newlines, and the gzip module.

2009-01-30 Thread Christopher Barker
s (does that work -- i.e \r\n converted to \n on Windows?), and how the Universal newline code is written. In any case, the 'U' flag should NEVER get passed through to the file opening code, and that's easy to fix. I tried to post this to the bug tracker, but my attempt to cre

<    1   2