Search Discussions
-
Dear all, The matrix multiplication operator @ is going to be introduced in Python 3.5 and I am thinking about the following idea: The semantics of matrix multiplication is the composition of the ...
Ivan Levkivskyi
May 6, 2015 at 1:15 pm
May 12, 2015 at 11:27 am -
Surrogate characters (U+D800-U+DFFF) are not allowed in Unicode, but Python allows them in Unicode strings for different purposes. 1) To represent UTF-8, UTF-16 or UTF-32 encoded strings that contain ...
Serhiy Storchaka
May 4, 2015 at 8:15 am
May 16, 2015 at 2:44 pm -
A big blocker to making certain sweeping changes to CPython (e.g. ref-counting) is compatibility with the vast body of C extension modules out there that use the C-API. While there are certainly ...
Eric Snow
May 6, 2015 at 4:23 pm
May 8, 2015 at 10:17 am -
Disclaimer: I?m not the author of jsonschema (https://github.com/Julian/jsonschema), but as a user think that users of the standard library (and potentially areas of the standard library itself) ...
Demian Brecht
May 21, 2015 at 5:29 am
May 28, 2015 at 5:07 pm -
Context: A bunch of my students will be working with me (if all goes according to plan!!)to hack on/in CPython sources. One of the things we would like to try is a framework for CS101 [Intro to ...
Rustom Mody
May 25, 2015 at 5:06 am
May 27, 2015 at 10:39 pm -
Hi Python Ideas folks, (I previously posted a similar message on Python-Dev, but it's a better fit for this list. See that thread here ...
Ben Hoyt
May 22, 2015 at 1:18 am
Jul 4, 2015 at 5:47 pm -
Hi everybody, I just heard about PEP479, and I want to prepare my open-source projects for it. I have no problem changing the code so it won't depend on StopIteration to stop generators, but I'd also ...
Ram Rachum
May 18, 2015 at 8:14 am
May 20, 2015 at 3:57 pm -
Since strings are constant, wouldn't it be much faster to implement string slices as a view of other strings? For clarity, I'm talking about CPython. I'm not talking about anything the user sees. The ...
Neil Girdhar
May 7, 2015 at 2:05 am
May 9, 2015 at 8:53 am -
Pip and venv have done a lot to improve the accessibility and ease of installing python packages, but I believe there is still a lot of room for improvement. I only realised how cumbersome I find ...
David Townshend
May 31, 2015 at 7:16 am
Jun 1, 2015 at 6:32 pm -
Is the idea to have timer that starts on import is good?
Anatoly techtonik
May 22, 2015 at 9:59 am
May 27, 2015 at 12:52 pm -
I was thinking about recent ideas discussed here. I also returned back to origins of my initial idea. The point is that it came from Numpy, I use Numpy arrays everyday, and typically I do exactly ...
Ivan Levkivskyi
May 9, 2015 at 11:28 pm
May 10, 2015 at 7:55 pm -
I am missing a policy how sys.path should be altered. We run a custom sub class of list in sys.path. We set it in sitecustomize.py This instance get replace by a common list in lines like this ...
Thomas Güttler
May 6, 2015 at 2:05 pm
May 11, 2015 at 8:42 am -
Hi, What you think about using Cmake build system? I see advantages such as: - Cross-plataform; - Supported in Clion IDE (amazing C/C++ IDE, breakpoints, etc); - Simple and easy to use (Zen of Python ...
André Freitas
May 22, 2015 at 11:08 pm
May 28, 2015 at 4:06 pm -
Hi all, I'm tired of getting bug reports like this one: https://github.com/numpy/numpy/issues/5919 where the issue is just that the user didn't see deprecation warnings, so I just filed a bug report ...
Nathaniel Smith
May 28, 2015 at 12:29 am
May 28, 2015 at 2:45 pm -
Dear all, The matrix multiplication operator @ is going to be introduced in Python 3.5 and I am thinking about the following idea: The semantics of matrix multiplication is the composition of the ...
Ivan Levkivskyi
May 6, 2015 at 1:20 pm
May 6, 2015 at 9:25 pm -
I'm envisioning "unless" as a synonym for "if not(...):" currently I use if .... : pass else: ... which works. N.B.: This isn't extremely important as there are already two ways to accomplish the ...
Charles Hixson
May 17, 2015 at 6:07 pm
May 19, 2015 at 3:42 pm -
Hi, What do you think about adding a method: `Executor.filter`? I was using something like this: my_things = [thing for thing in things if some_condition(thing)] But the problem was that ...
Ram Rachum
May 1, 2015 at 8:12 am
May 14, 2015 at 9:24 pm -
Hi all, How about extending the type annotations for int, float and complex to optionally include also a unit? For instance, def sleep(duration : Float['s']): ... Now the type checker could catch the ...
Koos Zevenhoven
May 14, 2015 at 11:03 am
May 15, 2015 at 9:23 pm -
First, let me start with The Curse of Knowledge https://en.wikipedia.org/wiki/Curse_of_knowledge which can be summarized as: "Once you get something, it becomes hard to think how it was to be without ...
Anatoly techtonik
May 29, 2015 at 8:56 am
Jun 1, 2015 at 9:56 pm -
Hi all! I am excited about seeing what's going on with asyncio and PEP492 etc. I really like that Python is becoming more suitable for the increasing amount of async code and that the distinction ...
Koos Zevenhoven
May 5, 2015 at 1:55 pm
May 5, 2015 at 11:19 pm -
Hi, I'm new to this mailing list. I needed a lazy list implementation for something, so I created one. I was a little bit surprised to find that there wasn't one in the *itertools* module and it ...
Alexander Atkins
May 14, 2015 at 2:52 pm
May 15, 2015 at 12:11 am -
Hi Python-Ideas ML, To resume quickly the idea: I wish to add "extra" attribute to LogMessage, to facilitate structured logs generation. For more details with use case and example, you can read ...
Ludovic Gasc
May 24, 2015 at 10:26 pm
Jul 6, 2015 at 9:01 pm -
While trying to debug a problem and thinking that it may be an issue with circular imports, I come up with an interesting idea that might be of value. It wasn't a circular import problem in this ...
Ron Adam
May 30, 2015 at 3:45 pm
Jun 2, 2015 at 9:46 pm -
In the PyData community, we really like method chaining for data analysis pipelines: (iris.query('SepalLength 5') .assign(SepalRatio = lambda x: x.SepalWidth / x.SepalLength, PetalRatio = lambda x ...
Stephan Hoyer
May 25, 2015 at 11:38 pm
May 27, 2015 at 8:45 am -
https://docs.python.org/2.7/library/functions.html?highlight=unicode#unicode There is no lossless way to encode the information to unicode. The argument that you know the encoding the data is coming ...
Anatoly techtonik
May 26, 2015 at 6:30 pm
May 29, 2015 at 8:10 am -
(I had posted this in the "more general 'for' loop" thread, but this really is a different idea from that.) Initialising several coroutines at once still doesn't seem clear/clean to me. Here is what ...
Ron Adam
May 2, 2015 at 6:12 pm
May 3, 2015 at 12:27 am -
Hi all, What will happen to array.array('u') in Python 4? It is deprecated right now. I remember reading about mutable strings somewhere, but I forgot, and I can't find the discussion. In any case, I ...
Jonathan Slenders
May 8, 2015 at 12:16 pm
May 9, 2015 at 7:56 am -
Dear all I am python novice and I am experiencing some problems with one of my programs that I converted from Matlab to Python. Is this an appropriate platform to ask such questions? I will be ...
Lesego Moloko
May 8, 2015 at 4:35 am
May 8, 2015 at 8:39 pm -
pip team said they won't support setting limit for major version of package being installed in the way below until it is supported by PEP 440. pip install patch==1.x The current way ==1.* conflicts ...
Anatoly techtonik
May 2, 2015 at 7:48 am
May 5, 2015 at 9:56 am -
Would it be useful to have one Python source file with an OrderedDict of (API_feat_lbl, [(start, None)]) mappings and a lookup? * [ ] feat/version segments/rays map * [ ] .lookup("print[_function]") ...
Wes Turner
May 30, 2015 at 12:54 pm
May 30, 2015 at 11:32 pm -
Greetings, I am attempting to use pathlib to recursively glob and/or find files. File permissions and groups are all over the place due to poor management of the filesystem which is out of my ...
Frank Woodall
May 7, 2015 at 4:06 pm
May 7, 2015 at 6:27 pm -
To reframe the problem (set the subject line), a segment tree of available features for the current/a given Python interpreter would be useful. * [ ] this could be e.g. 'features.py' and * [ ] ...
Wes Turner
May 30, 2015 at 1:15 pm
May 30, 2015 at 1:39 pm -
See PEP 485, which appears to be still a draft: https://www.python.org/dev/peps/pep-0485/ Best, Neil An HTML attachment was scrubbed... URL ...
Neil Girdhar
May 13, 2015 at 6:24 am
May 14, 2015 at 8:37 pm -
Hi everyone! (Sorry about double posting, but I wanted to start a new thread, which I tried but apparently failed to do last time. Although inspired by and related to the function composition ...
Koos Zevenhoven
May 10, 2015 at 10:42 pm
May 10, 2015 at 10:42 pm -
Dear Chris, (similar pointed This is true. One can only use single argument "normal" functions. Multiple argument ones should be made "composable". An HTML attachment was scrubbed... URL ...
Ivan Levkivskyi
May 6, 2015 at 4:55 pm
May 6, 2015 at 4:55 pm -
Dear Steve, Thank you for the feedback and for the links! I think that both (f at g).__name__ and str(f at g) should be f.__name__ + ' @ ' + g.__name__ and str(f) + ' @ ' +str(g) Concerning the ...
Ivan Levkivskyi
May 6, 2015 at 3:30 pm
May 6, 2015 at 3:30 pm
Group Overview
group | python-ideas |
categories | python |
discussions | 36 |
posts | 568 |
users | 83 |
website | python.org |
83 users for May 2015
Archives
- September 2015 (458)
- August 2015 (730)
- July 2015 (490)
- June 2015 (610)
- May 2015 (568)
- April 2015 (384)
- March 2015 (582)
- February 2015 (721)
- January 2015 (532)
- December 2014 (359)
- November 2014 (310)
- October 2014 (307)
- September 2014 (363)
- August 2014 (715)
- July 2014 (267)
- June 2014 (193)
- May 2014 (259)
- April 2014 (360)
- March 2014 (1,048)
- February 2014 (1,102)
- January 2014 (539)
- December 2013 (234)
- November 2013 (497)
- October 2013 (256)
- September 2013 (418)
- August 2013 (598)
- July 2013 (750)
- June 2013 (674)
- May 2013 (649)
- April 2013 (237)
- March 2013 (390)
- February 2013 (509)
- January 2013 (710)
- December 2012 (330)
- November 2012 (435)
- October 2012 (1,341)
- September 2012 (190)
- August 2012 (177)
- July 2012 (202)
- June 2012 (370)
- May 2012 (335)
- April 2012 (282)
- March 2012 (374)
- February 2012 (729)
- January 2012 (342)
- December 2011 (283)
- November 2011 (274)
- October 2011 (671)
- September 2011 (665)
- August 2011 (367)
- July 2011 (381)
- June 2011 (199)
- May 2011 (292)
- April 2011 (417)
- March 2011 (475)
- February 2011 (150)
- January 2011 (141)
- December 2010 (95)
- November 2010 (282)
- October 2010 (360)
- September 2010 (166)
- August 2010 (137)
- July 2010 (346)
- June 2010 (267)
- May 2010 (103)
- April 2010 (205)
- March 2010 (72)
- February 2010 (125)
- January 2010 (57)
- December 2009 (106)
- November 2009 (60)
- October 2009 (619)
- September 2009 (304)
- August 2009 (192)
- July 2009 (351)
- June 2009 (172)
- May 2009 (490)
- April 2009 (581)
- March 2009 (648)
- February 2009 (576)
- January 2009 (145)
- December 2008 (87)
- November 2008 (84)
- October 2008 (185)
- September 2008 (199)
- August 2008 (124)
- July 2008 (89)
- June 2008 (70)
- May 2008 (61)
- April 2008 (52)
- March 2008 (106)
- February 2008 (27)
- January 2008 (97)
- December 2007 (27)
- November 2007 (138)
- October 2007 (73)
- September 2007 (85)
- August 2007 (5)
- July 2007 (28)
- June 2007 (40)
- May 2007 (312)
- April 2007 (198)
- March 2007 (119)
- February 2007 (74)
- January 2007 (153)
- December 2006 (29)