Hello all,
PEP 448 (https://www.python.org/dev/peps/pep-0448/) is mostly implemented
now based on some early implementations by twouters (in 2008) and fhahn
(2013) and recently by Joshua and I.
The issue tracker http://bugs.python.org/issue2292 has:
* a working patch, and
* discussion and updates to the PEP (the most conservative interpretations
were taken).
I was wondering if anyone would mind reviewing the patch or even just
trying it out to let us know if there are any corner cases that we missed.
(I need to get back to my actual work, so it would be good to have this
reviewed before I forget everything if possible.)
Thank you,
Neil
Hello,
As BDFL-delegate, I'd like to pronounce soon on PEP 475 - "Retry system
calls failing with EINTR". I've just pushed some small rephrasings,
which should appear soon (at https://www.python.org/dev/peps/pep-0475/).
There is a working implementation by Charles-François at
http://bugs.python.org/issue23285.
If you have anything to say, please chime in quick :-)
Regards
Antoine.
Hello,
I've finally managed to build a (somewhat) working Python port for the
Android tablet I'm using. Unfortunately, as I quickly found out,
Python's built-in help function requires tkinter, which requires
tcl/tk.
I did download the sources for tcl/tk and built tcl, but found out
that tk requires XWindows libraries and includes.
Long story short: Is there an alternative documentation system (i.e.
epydoc) that does not have tkinter dependencies? If so, is there a
parameter or env variable that would allow me to use it instead of
pydoc?
Thanks in advance,
Cyd
if you can do this....
a chemical physics and element physics like everything from melting points
to how much heat you need to add two chemicals together
and physics like aerodynamics, space dynamics, and hydrodynamics etcetera
for propellers and motors and stuff.
just having this in a main language seems to make a shit ton of sense.
Just like all the physics you can think of from electrical equipment to
building microchips to oscillators and resistors and stuff like that.
thanks
can you guys develop an audio kit that works around jackd or on windows
directx? and tutorials to write synthesizers. and drum machines like a
tr-606 with triggers ( I want to trigger a drum synth like the March
UDS(Soviet).... Coolest drum synth EVER.
Also, I think you should have a way to write assembler functions to really
optimize speed and have a table and stuff for assembler learning for all
cpus and stuff. even asm graphics and audio would be super useful in some
instances.
Thanks for your time
-Ty
On Tue, Jan 27, 2015 at 6:31 AM, Cyd Haselton <chaselton(a)gmail.com> wrote:
> Additionally it appears as though some modules were not built with the
> correct links to -lc -ldl, even though I added them as dependencies in
> Setup and setup.py, as well as in the appropriate env variables.
> Importing string, tokenize, operator, inspect...and probably others I
> haven't tested...throw the 'undefined reference to dlopen' error.
Is this another topic? If so, please start another thread. People
glancing at subjects
won't recognize that you're now tackling a different problem.
The modules you mention here (as well as pydoc) are all pure Python modules.
I don't think any of them would have directly triggered a dlopen error. Do you
have a traceback?
Skip
To finish PEP 448, I need to update the grammar for syntax such as
{**x for x in it}
and
{1:2, 3:4, **a}
It's been a long time since I've looked at grammars and I could really use
the advice of an expert. I'm considering replacing:
dictorsetmaker: ( (test ':' test (comp_for | (',' test ':' test)* [','])) |
(test (comp_for | (',' test)* [','])) )
with:
dictpopulator: test ':' test | '**' test
dictorsetmaker: ( (dictpopulator (comp_for | (',' dictpopulator)* [','])) |
(test (comp_for | (',' test)* [','])) )
Am I headed in the right direction? Of course I will need to edit
parsermodule.c and ast.c.
Best,
Neil