[Python-Dev] Actor Model in Python

2019-03-31 Thread Aratz Manterola Lasa via Python-Dev
Hello, I was wondering if there was any Python project aiming to implement the actor model for python concurrency. ¿Does anyone know it? Aratz. ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev

[Python-Dev] Enhancement request for PyUnicode proxies

2020-12-25 Thread Nelson, Karl E. via Python-Dev
eduled for removal. Are there any plans currently to address the concept of a proxy string in PyUnicode API? _______________ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org https://mail.python.org/mailm

[Python-Dev] Re: Enhancement request for PyUnicode proxies

2021-01-04 Thread Nelson, Karl E. via Python-Dev
agreements without laboratory legal sign off so I am in a bind until such time as I deal with their concerns. --Karl -Original Message- From: Steve Dower Sent: Monday, January 4, 2021 8:54 AM To: python-dev@python.org Subject: [Python-Dev] Re: Enhancement request for PyUnicode proxies On 12

[Python-Dev] Re: Heap types (PyType_FromSpec) must fully implement the GC protocol

2021-01-12 Thread Nelson, Karl E. via Python-Dev
te to evaluating the address of the heap type. But that is just my 2 cents. --Karl -Original Message- From: Neil Schemenauer Sent: Tuesday, January 12, 2021 10:17 AM To: Victor Stinner Cc: Python Dev Subject: [Python-Dev] Re: Heap types (PyType_FromSpec) must fully implement th

[Python-Dev] Re: Moving threadstate to thread-local storage.

2021-02-24 Thread 谢俊逸 via Python-Dev
- (int)getSpecific { int * value = pthread_getspecific(tlsKey); return *value; } - (int)getTLS { return *tlv_v5; }___________ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org https://mail.py

Re: [Python-Dev] BDFL ruling request: should we block forever waiting for high-quality random bits?

2016-06-16 Thread Ionel Cristian Mărieș via Python-Dev
THONWEAKURANDOM=y or PYTHONFASTURANDOM=y. That ways there's no need to change api of os.urandom() and users have a clear and easy path to get old behavior. Thanks, -- Ionel Cristian Mărieș, http://blog.ionelmc.ro ___________ Python-Dev mailing list Py

[Python-Dev] JUMP_ABSOLUTE in nested if statements

2016-06-18 Thread Obiesie ike-nwosu via Python-Dev
ted if statements? I have tried other types of nested if statements and it has always been JUMP_FORWARD that is generated. ___________ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] JUMP_ABSOLUTE in nested if statements

2016-06-18 Thread Obiesie ike-nwosu via Python-Dev
, 2016, at 2:04 PM, Obiesie ike-nwosu via Python-Dev >> wrote: >> >> Hi, >> >> Could some one give a hand with explaining to me why we have a JUMP_ABSOLUTE >> followed by a JUMP_FORWARD op code when this function is disassembled. >> < snipped> >>

[Python-Dev] digital panels processing text sowftware write with Python language

2016-07-08 Thread Hadi Montazami safavi via Python-Dev
regards.M.Safavi___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

[Python-Dev] Python CFG Basic blocks

2016-07-11 Thread Obiesie ike-nwosu via Python-Dev
e block (the second return statement) Is there any reason for this or have I somehow missed something in the CFG generation process? Regards, Obi___________________ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Uns

[Python-Dev] RFC on PEP 681: Data Class Transforms

2022-04-11 Thread Erik De Bonte via Python-Dev
ase send any comments there. Any feedback would be appreciated! Thanks, Erik _______ 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

[Python-Dev] Re: [Typing-sig] Almost accepting PEP 681 – Data Class Transforms

2022-04-25 Thread Erik De Bonte via Python-Dev
* Erik, could you propose a change to the PEP text? I just created https://github.com/python/peps/pull/2555 to address these issues. -Erik ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le

[Python-Dev] Re: Annotating pure functions to improve inline caching/optimization

2022-09-14 Thread Eric V. Smith via Python-Dev
ype annotation for mypy: https://github.com/python/mypy/issues/4468 [2] pure-func module: https://pypi.org/project/pure-func/ ___________ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org https://mail.p

[Python-Dev] Re: Retiring this mailing list ?

2023-11-14 Thread Eric V. Smith via Python-Dev
a moderator). Eric ___________ 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.org/archives/list/python-d

[Python-Dev] Re: [Python-ideas] Re: Amend PEP-8 to require clear, understandable comments instead of Strunk & White Standard English comments

2020-06-29 Thread C. Titus Brown via Python-Dev
thrash > I mean you tend to ignore threads from python-dev and python-ideas which > is not probably why you subscribed in the first place > > This is not the first time i am saying that you can fly around the world on > official > Python mailing lists. But it's regrettable

[Python-Dev] Re: PEP 622 version 2 (Structural Pattern Matching)

2020-07-30 Thread Rik de Kort via Python-Dev
the first version. (I've written another e-mail on the thread, but since this scatters around: my current bikeshed color is to _require_ the walrus op for assignments like in:  `case (x := _, y := _): ...` )    js -><-” “http://tom.loria.fr/wiki/index.php/Main_Page -- Steven” [attachme

[Python-Dev] Re: PEP 622 version 2 (Structural Pattern Matching)

2020-07-30 Thread Rik de Kort via Python-Dev
ood use cases (either that, or I have no intuition for programming :P). Let me know if you have some! Rik P.S. If I'm out of line or violating etiquette with anything, please let me know. I'm open to help. ___________ Python-Dev mailing list -- py

[Python-Dev] Re: PEP 622 version 2 (Structural Pattern Matching)

2020-07-31 Thread Rik de Kort via Python-Dev
nt to write down what the thing looks like and have the interpreter figure out the correct bindings. Extra binding syntax will get in the way rather than be helpful. Python Dev wrote: “+10. See https://stackoverflow.com/questions/36825925/expressions-with-true-and-is-true-give-different-results/368

[Python-Dev] Re: PEP 622 version 2 (Structural Pattern Matching)

2020-09-23 Thread Jens Gåsemyr Magnus via Python-Dev
___ 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.org/archives/list/python-dev@python.org/message

Re: [Python-Dev] Python startup time

2018-05-11 Thread Chris Barker - NOAA Federal via Python-Dev
; Traditionally, Python has had the model "there is only runtime". > So, starting to do things at compile time complicates that model. > > Regards, > > Neil > _______ > Python

Re: [Python-Dev] (Looking for) A Retrospective on the Move to Python 3

2018-05-11 Thread Chris Barker - NOAA Federal via Python-Dev
ier. CHB > Regards > > Antoine. > > > ___________ > Python-Dev mailing list > Python-Dev@python.org > https://mail.python.org/mailman/listinfo/python-dev > Unsubscribe: > https://mail.python.org/mailman/

Re: [Python-Dev] (Looking for) A Retrospective on the Move to Python 3

2018-05-14 Thread Chris Barker - NOAA Federal via Python-Dev
thon/cpython/blame/master/Lib/__future__.py > > -- > ~Ethan~ > ___________ > Python-Dev mailing list > Python-Dev@python.org > https://mail.python.org/mailman/listinfo/python-dev > Unsubscribe: https://mail.python.org/mailman/options/python-dev/wes. > turn

Re: [Python-Dev] Docstrings on builtins

2018-06-04 Thread Chris Barker - NOAA Federal via Python-Dev
> > This may even be a bug/feature of IPython, Ahh, thanks! I’ll look into that. -CHB ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/pyth

Re: [Python-Dev] Microsoft to acquire GitHub for $7.5 b

2018-06-07 Thread Chris Barker - NOAA Federal via Python-Dev
rd it is to backup / mirror an entire repo — but it sure seems like a good idea. -CHB _______ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/arc

Re: [Python-Dev] Informal educator feedback on PEP 572 (was Re: 2018 Python Language Summit coverage, last part)

2018-06-28 Thread Chris Barker - NOAA Federal via Python-Dev
ions — adding the ability to bind a name in all these places complicates the language significantly. > Put a body B in a listcomp and any side effects due to executing B Maybe it’s just me, but re-binding a name seems like a whole new category of side effect. -CHB _______

Re: [Python-Dev] Informal educator feedback on PEP 572 (was Re: 2018 Python Language Summit coverage, last part)

2018-06-29 Thread Chris Barker - NOAA Federal via Python-Dev
ons can be virtually anywhere in your code. Is this a real risk? Maybe not, but it is a complication. -CHB _______ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailma

Re: [Python-Dev] Informal educator feedback on PEP 572 (was Re: 2018 Python Language Summit coverage, last part)

2018-07-02 Thread Chris Barker - NOAA Federal via Python-Dev
constructs like generator expressions? -CHB ___________________ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] Naming comprehension syntax [was Re: Informal educator feedback on PEP 572 ...]

2018-07-06 Thread Chris Barker - NOAA Federal via Python-Dev
you've run the iterators within it, but with a generator > expression, you already have a generator before you've > run it. That makes it feel different to me. > > -- > Greg > _______ > Python-Dev mailing list > Python-Dev@python.

Re: [Python-Dev] Naming comprehension syntax [was Re: Informal educator feedback on PEP 572 ...]

2018-07-09 Thread Chris Barker - NOAA Federal via Python-Dev
start a new naming scheme for those. ‘cause then we’d get lost of questions about the difference between generator expressions and generator comprehensions ;-) -CHB ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman

Re: [Python-Dev] Arbitrary non-identifier string keys when using **kwargs

2018-10-11 Thread Chris Barker - NOAA Federal via Python-Dev
is not the place for sanitizing to take place — each app will need different sanitization rules. -CHB ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/o

Re: [Python-Dev] 3.7.2rc1 and 3.6.8rc1 cutoffs ahead, last 3.6.x bugfix release!

2018-12-19 Thread Chris Barker - NOAA Federal via Python-Dev
to allow backporting bugfixes to 3.6 if they do not need excessive > work, but stop to fix 3.6 only bugs. After migrating to GitHab, backporting > became less painful, most of backports to 3.6 can be done automatically from > master or from 3.7. > > _________

Re: [Python-Dev] Sub-interpreters: importing numpy causes hang

2019-01-24 Thread Chris Barker - NOAA Federal via Python-Dev
at is >>> imported first sticks around forever and for all plugins. >>> >>> I am thinking about this design: >>> - Plugins don't maintain state in their Python world. They expose >>> functions, my application calls them. >>> - Everytime I call int

Re: [Python-Dev] Add more SyntaxWarnings?

2019-01-24 Thread Chris Barker - NOAA Federal via Python-Dev
time, then it won’t generally be catchable in s try-except— so the actual exception type isn’t very important. -CHB _______ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] Add more SyntaxWarnings?

2019-01-28 Thread Chris Barker - NOAA Federal via Python-Dev
on type isn’t very >> important. > > +1 > > In general depending much on exception type is a hit-or-miss affair. ___________ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] Another update for PEP 394 -- The "python" Command on Unix-Like Systems

2019-02-13 Thread Chris Barker - NOAA Federal via Python-Dev
I'd rather hold up > an ideal than pretend that the status quo can't be changed - Exactly. -CHB > this list is literally for discussing changing the status quo of anything in > core Python ;) ) > > Cheers, > Steve > ___________

[Python-Dev] Pythong 3.6.5 Tests failed

2019-03-08 Thread Sharma, Haritha (CWM-NR) via Python-Dev
AILED (failures=6, skipped=2) test test_dtrace failed test_dtrace failed 1 test failed: test_dtrace Total duration: 5 sec Tests result: FAILURE _______________ If you received this email in error, please advise the sender (by return email or o

Re: [Python-Dev] PEP-582 and multiple Python installations

2019-04-04 Thread Chris Barker - NOAA Federal via Python-Dev
is in that dir. The PEP is listed as a draft — anyone know what’s going on with it? -CHB ___________ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] Consolidating channel of record [was: 581 (Using GitHub issues for CPython) is accepted]

2019-05-15 Thread Chris Barker - NOAA Federal via Python-Dev
who will *make* the decision read Python-Dev regularly, except > perhaps Carol. > > Paul Moore writes: > >> Thanks for all of these. I appreciate the time you took locating them >> for me. But I do have to say that I still can't really follow any >> useful &qu

[Python-Dev] NASA Inquiry

2021-11-09 Thread Elmore, Charita R. (GSFC-705.0)[TELOPHASE CORP] via Python-Dev
] ___ 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.org/archives/list/python-dev@python.org/message

<    5   6   7   8   9   10