Re: missing- api-ms-win-crt-runtime-|1-1-0.dll

2018-09-18 Thread Gene Heskett
On Tuesday 18 September 2018 15:59:52 MRAB wrote: > On 2018-09-18 19:43, Gene Heskett wrote: > > On Tuesday 18 September 2018 12:45:38 Chandan Kumar Abhimanyu wrote: > >> how I download and install api-ms-win-crt-runtime-|1-1-0.dll > >> when I am downloading by googling it is not installable

Re: missing- api-ms-win-crt-runtime-|1-1-0.dll

2018-09-18 Thread eryk sun
On Tue, Sep 18, 2018 at 1:43 PM, Gene Heskett wrote: > > > > So apparently the | is a legal filename component, to a windows box. "l1-1-0" starts with "l" (ordinal 0x6c, i.e. lower-case "L"), no

Re: missing- api-ms-win-crt-runtime-|1-1-0.dll

2018-09-18 Thread MRAB
On 2018-09-18 19:43, Gene Heskett wrote: On Tuesday 18 September 2018 12:45:38 Chandan Kumar Abhimanyu wrote: how I download and install api-ms-win-crt-runtime-|1-1-0.dll when I am downloading by googling it is not installable file. -- *Chandan Kumar Abhimanyu* *+91 9876852058* *Department

Re: Can't import array in 3.7 python version

2018-09-18 Thread MRAB
On 2018-09-18 18:48, Cruey Cruel wrote: I have subscribe to python list, please provide me any resolution forpreviois below email What error message does it print? It might be that you have a named a file the same as one of those in Python's standard library, e.g. "array.py". If that's not

Re: missing- api-ms-win-crt-runtime-|1-1-0.dll

2018-09-18 Thread Gene Heskett
On Tuesday 18 September 2018 12:45:38 Chandan Kumar Abhimanyu wrote: > how I download and install api-ms-win-crt-runtime-|1-1-0.dll when > I am downloading by googling it is not installable file. > -- > *Chandan Kumar Abhimanyu* > *+91 9876852058* > *Department of Management Studies,* > *Indi

Re: missing- api-ms-win-crt-runtime-|1-1-0.dll

2018-09-18 Thread Mark Lawrence
On 18/09/18 17:45, Chandan Kumar Abhimanyu wrote: how I download and install api-ms-win-crt-runtime-|1-1-0.dll when I am downloading by googling it is not installable file. https://www.microsoft.com/en-us/download/details.aspx?id=49984 -- My fellow Pythonistas, ask not what our language

Re: missing- api-ms-win-crt-runtime-|1-1-0.dll

2018-09-18 Thread eryk sun
On Tue, Sep 18, 2018 at 11:45 AM, Chandan Kumar Abhimanyu wrote: > how I download and install api-ms-win-crt-runtime-|1-1-0.dll when I am > downloading by googling it is not installable file. The Universal C Runtime (CRT) is an OS component for Windows Vista and later. Make sure Windows Upda

MIDI note timing

2018-09-18 Thread Tobiah
I'd like to do some algorithmic composing using python. I've seen various libraries that seem to be capable of sending a MIDI message to a MIDI port, but I don't know where to get the timing from. Normally, with something like CSOUND, the program locks itself to the timing of the soundcard and pr

Re: Can't import array in 3.7 python version

2018-09-18 Thread Cruey Cruel
I have subscribe to python list, please provide me any resolution forpreviois below email On Tue, 18 Sep 2018, 23:07 Cruey Cruel, wrote: > Hi team, > Am facing issue in importing array. > > I use alatest version of pythonide and pycharm. > > Telle how can I fix this. > > Thanks and regards > Jig

missing- api-ms-win-crt-runtime-|1-1-0.dll

2018-09-18 Thread Chandan Kumar Abhimanyu
how I download and install api-ms-win-crt-runtime-|1-1-0.dll when I am downloading by googling it is not installable file. -- *Chandan Kumar Abhimanyu* *+91 9876852058* *Department of Management Studies,* *Indian Institute of Technology (ISM), Dhanbad, * *Jharkhand- 826004, India.* -- https:

PyLint and Mypy real-time (and on-demand) code inspection from within PyCharm/IDEA

2018-09-18 Thread Roberto Leinardi
Hello there, I am the developer of pylint-pycharm and mypy-pycharm, two plugins providing both real-time and on-demand scanning of Python files with PyLint/Mypy from within PyCharm/IDEA. The real-time code inspection works automatically the same way like the PyCharm's build-in PEP8 check (you see

Re: transform a "normal" decorator in one for async functions

2018-09-18 Thread vito . detullio
Il giorno martedì 18 settembre 2018 17:15:22 UTC+2, Thomas Jollans ha scritto: > > but I cannot rewrite this library. > > Perhaps not, but surely you can write your own decorator that does > whatever this library's decorator does for async functions? Presumably > you have the code... well, maybe

Re: Permutations using a recursive generator

2018-09-18 Thread Thomas Jollans
On 2018-09-18 17:05, ast wrote: > Le 18/09/2018 à 17:01, ast a écrit : >> Hello >> >> I found a smart and very concise code to >> generate all permutations of a list. >> I put it here if someone is interested to >> figure out how it works When you say "found a [...] code" I hope you mean "wrote a

Re: transform a "normal" decorator in one for async functions

2018-09-18 Thread Thomas Jollans
On 2018-09-18 16:20, vito.detul...@gmail.com wrote: > but I cannot rewrite this library. Perhaps not, but surely you can write your own decorator that does whatever this library's decorator does for async functions? Presumably you have the code... > is there a way to "convert" a "normal" decorato

Re: Permutations using a recursive generator

2018-09-18 Thread ast
Le 18/09/2018 à 17:01, ast a écrit : error: permut instead of S     yield from permut(li2, prefix+[elt]) -- https://mail.python.org/mailman/listinfo/python-list

Permutations using a recursive generator

2018-09-18 Thread ast
Hello I found a smart and very concise code to generate all permutations of a list. I put it here if someone is interested to figure out how it works def permut(li, prefix=[]): if len(li)==1: yield prefix + li else: for elt in li: li2 = li.copy()

transform a "normal" decorator in one for async functions

2018-09-18 Thread vito . detullio
Hi. Let's say I have this library that expose a decorator; it's meant to be used with normal functions. but I have to "apply" the decorator to an async function. >From what I understand I cannot "really" wait for this decorated async >function, as it's not really "async", and, from a simple tes