Re: [Python-ideas] Option of running shell/console commands inside the REPL

2019-02-05 Thread Lele Gaifax
Lele Gaifax writes: > Steven D'Aprano writes: > >> One readline feature To be exact, it's not a feature of the readline library: see https://bugs.python.org/issue8 (sigh, my GH fork of cpython has been recreated so some refs are broken). ciao, lele. -- nickname: Lele Gaifax | Quando

Re: [Python-ideas] Vectorization [was Re: Add list.join() please]

2019-02-05 Thread Jimmy Girardet
Hi, I'm not sure to understand the real purpose of Vector. Is that a new collection ? Is that a list with a builtin map() function ? Is it a  wrapper to other types ? Should it be iterable ? The clear need explained before is using fluent interface on a collection :

Re: [Python-ideas] need python automation code convert MDB files into csv files.

2019-02-05 Thread Rhodri James
On 05/02/2019 00:10, vinoth A N wrote: Hello Friends, Hello there! This is actually a mailing list/newsgroup for discussing ideas for extending and developing the Python language, not for dealing with people's programming problems. I've made some comments here, but in the future could you

Re: [Python-ideas] need python automation code convert MDB files into csv files.

2019-02-05 Thread MRAB
On 2019-02-05 11:42, Rhodri James wrote: On 05/02/2019 00:10, vinoth A N wrote: [snip] extension = 'mdb' result = [i for i in glob.glob('*.{}'.format(extension))] Not a bug, but you are making unnecessary work for yourself here. 'extension' is only ever the string "mdb", so why go to all the

Re: [Python-ideas] need python automation code convert MDB files into csv files.

2019-02-05 Thread Rhodri James
On 05/02/2019 13:02, MRAB wrote: On 2019-02-05 11:42, Rhodri James wrote: On 05/02/2019 00:10, vinoth A N wrote: [snip] extension = 'mdb' result = [i for i in glob.glob('*.{}'.format(extension))] Not a bug, but you are making unnecessary work for yourself here. 'extension' is only ever the

Re: [Python-ideas] Option of running shell/console commands inside the REPL

2019-02-05 Thread Lele Gaifax
Steven D'Aprano writes: > One readline feature I know of which I would love to see supported in > the REPL is the "execute and next line" command. On my bash system, it > is Ctrl-O. I implemented and offered the feature, but unfortunately it is just a couple of lines copied from bash, and