Re: How to append horizontally the data array from the FOR loop?

2019-05-10 Thread Cameron Simpson
On 10May2019 08:08, Madhavan Bomidi wrote: I have to append requisite data matrix from multiple files into a single variable using FOR loop. outData = []; for file in fileList: allData = # an array of nrows and ncols. outData = [outData; allData] # in MATLAB Whi

Re: Django Potential Fork Bomb

2019-05-10 Thread Peter J. Holzer
On 2019-05-09 14:21:15 +0530, Shakti Kumar wrote: > On Thu, 9 May 2019 at 10:27, dieter wrote: > > Shakti Kumar writes: > > > I suspect django spawned too many child processes, and consecutively I ran > > > out of resources on my dev server. How can I prevent this from happening? > > > And I am n

CheetahTemplate 3.2.3

2019-05-10 Thread Oleg Broytman
Hello! I'm pleased to announce version 3.2.3, the third bugfix release of branch 3.2 of CheetahTemplate3. What's new in CheetahTemplate3 == Bug fixes: - Fixed infinite recursion in ``ImportManager`` on importing a builtin module. Documentation: - The site

Re: Farewell, Python 3.4

2019-05-10 Thread Informatico de Neurodesarrollo
Good job, Larry !!! El 08/05/19 a las 11:36, Larry Hastings escribió: It's with a note of sadness that I announce the final retirement of Python 3.4.  The final release was back in March, but I didn't get around to actually closing and deleting the 3.4 branch until this morning. Python 3.

Re: How to append horizontally the data array from the FOR loop?

2019-05-10 Thread Rhodri James
On 10/05/2019 16:08, Madhavan Bomidi wrote: Hi, I have to append requisite data matrix from multiple files into a single variable using FOR loop. outData = []; for file in fileList: allData = # an array of nrows and ncols. outData = [outD

How to append horizontally the data array from the FOR loop?

2019-05-10 Thread Madhavan Bomidi
Hi, I have to append requisite data matrix from multiple files into a single variable using FOR loop. outData = []; for file in fileList: allData = # an array of nrows and ncols. outData = [outData; allData] # in MATLAB While the ncols are con

How to debug a function under the (pdb) prompt?

2019-05-10 Thread jfong
For example, there is a file test0.py: - 1 def foo(): 2 for i in range(3): 3 print(i) 4 5 x = 0 - I start the debug session as below. My question is why the break point at line 3 didn't work. How to debug the function foo() at this time? D:\Works\Python>py -m pdb t

Re: Using a Variable Inside the String

2019-05-10 Thread Thomas Jollans
On 07/05/2019 18.43, Rob Gaddi wrote: > This over here is my friend Bob.  What's 31 + 18 + Bob? That's Numberwang! -- https://mail.python.org/mailman/listinfo/python-list