Sunbeam India UPS Point- unfair Trade Practices in Computer Business

2008-09-20 Thread ronald
Sunbeam India UPS Point- unfiar Trade Practices in Computer Business Save Money, Tension, and Time. Avoid Nehru Place market to buy Computer Goods Hello All, This is to inform you all the sellers at the Nehru Place are not selling good products. Especially the shop- Nishchal Joshi, Sunbeam India

pythonw.exe

2011-08-14 Thread Ronald Reynolds
Dear Python Friends: in my python directory there is a python.exe file which I understand completely but there is also a pythonw.exe DOS seems to honor the pythonw command (No error message) but nothing happens. What is pythonw.exe? Also is there a way to invoke idle from the DOS prompt? I tried

upgrade python

2011-08-23 Thread Ronald Reynolds
What is recommended for upgrading python for windows? Do I just install the new versionDo I edit my system path? Should I uninstall the old version.  Right now I have 2.7 and3.1  and 3.2  and I keep editing my system path when I install a new version but I'm notsure that's the right way to go.  

Re: PyQt on MAC OS X

2004-12-15 Thread Ronald Oussoren
the normal interpreter (the one named python) you've run into an annoying feature of the MacOS X display system, pythonw can be used to circumvent that feature. Ronald -- http://mail.python.org/mailman/listinfo/python-list

ANN: pyobjc-1.2

2004-12-30 Thread Ronald Oussoren
PyObjC 1.2 is now available for download at http://pyobjc.sourceforge.net/ PyObjC is a bridge between Python and Objective-C. It allows full featured Cocoa applications to be written in pure Python. It is also easy to use other frameworks containing Objective-C class libraries from Python and t

Re: py2app on Mac OS X 10.3

2004-12-31 Thread Ronald Oussoren
ers, it is a neat way of bundling the application program and all data files it needs. I was wondering if some extra codes needed by setup.py Could anyone give me an advice? What is 'eventlog.xml' supposed to be? If you're going to write to it, it is in the wrong location. If i

web scraping

2013-10-12 Thread Ronald Routt
I am new to programming and trying to figure out python. I am trying to learn which tools and tutorials I need to use along with some good beginner tutorials in scraping the the web. The end result I am trying to come up with is scraping auto dealership sites for the following: 1.N

function code snippet that has function calls I have never seen before. How does it work.

2015-10-03 Thread Ronald Cosentino
def funA(x,y,z): return (x+y) * z def funB(x,y): return(x-y) print(funA(4,funB(2,3), funB(3,2))) the answer is 3. I don't know how it works. -- https://mail.python.org/mailman/listinfo/python-list

PEP 309 (Partial Function Application) Idea

2006-01-14 Thread Ronald Mai
In my opinion, Ellipsis might be in the middle, not only in leftmost or rightmost, so a placeholder approach can be much more flexible and convenient. Here is a reference implementation: _ = lambda x: x.pop(0) def partial(func, *args, **keywords): def newfunc(*fargs, **fkeywords):

Re: PEP 309 (Partial Function Application) Idea

2006-01-16 Thread Ronald Mai
for a new function, named parameter might be a better choise, but for existing function, placeholder would be better, since you don't need to modify the exiting code. -- http://mail.python.org/mailman/listinfo/python-list

Re: PEP 309 (Partial Function Application) Idea

2006-01-16 Thread Ronald Mai
sorry, should be "existing" -- http://mail.python.org/mailman/listinfo/python-list

Re: PEP 309 (Partial Function Application) Idea

2006-01-16 Thread Ronald Mai
for a new function, named parameter might be a better choise, but for existing function, placeholder would be better, since you don't need to modify the existing code. -- http://mail.python.org/mailman/listinfo/python-list

Re: [python-nl] Compile python extension

2006-10-11 Thread Ronald Oussoren
d to optimization and I don't think those will affect the performance of pysqlite very much. A more permanent fix is change /opt/python/lib/python2.4/distutils/spawn.py" line 122, insert "%s" as the first argument of the call to log.info. This might not be the only place t

Re: [Python-Dev] RELEASED Python 3.0.1

2009-02-14 Thread Ronald Oussoren
On 14 Feb, 2009, at 9:55, Martin v. Löwis wrote: Any chance of getting a Mac installer for this one? Chances are non-zero, yes. I had hoped to build one last night, but got home way later than I had planned. The installer is building as I type this. Ronald smime.p7s Description: S

noob trouble with IDLE

2008-12-21 Thread Ronald Rodriguez
Hi, Im new to python and I've just started using Byte of Python, running the samples etc. Im using IDLE on Xp. Ok, here's the thing. A sample script makes a call to the os.system() function in order to zip some files. Everything works fine when running from the command line, but the same code fails

Re: [Python-Dev] RELEASED Python 2.6.2

2009-04-16 Thread Ronald Oussoren
e pre-announcement of the 2.6.2 tag. I sent the installer to Barry earlier today. The installer was build using a 3th-party installation of Tcl/Tk. Ronald smime.p7s Description: S/MIME cryptographic signature -- http://mail.python.org/mailman/listinfo/python-list

Re: [Python-Dev] RELEASED Python 2.6.2

2009-04-16 Thread Ronald Oussoren
er hard to support both 8.4 and 8.5 in the same installer. Ronald -- Russell On Apr 16, 2009, at 5:35 AM, Ronald Oussoren wrote: On 15 Apr, 2009, at 22:47, Russell E. Owen wrote: Thank you for 2.6.2. I see the Mac binary installer isn't out yet (at least it is not listed on the do

Re: Advice for Python and Web Server/Services?

2006-03-27 Thread Ronald Davis
On Sunday 26 March 2006 5:00 pm, Dennis Lee Bieber wrote: > Any possibility you need to specify an option on the socket > connections to reuse-sockets without the normal time-out? The problem turned out to be keep-alive. Apparently, Comcast is limiting my inbound connections. Apache keeps the co

Python 2.7 installation problem

2010-09-25 Thread Ronald Guida
Hi, I am trying to perform a user-install of python 2.7 on Ubuntu 10.04, and my installation is failing. This sequence of commands reproduces the failure on my system: $ tar -zxvf Python-2.7.tgz $ cd Python-2.7/ $ ./configure --prefix=$HOME $ make $ ./python Lib/test/test_collections.py doctest

Re: Python 2.7 installation problem

2010-09-26 Thread Ronald Guida
the installed python in /home/oddron/bin/ . I manually copied the contents of "/home/oddron/installers/python/Python-2.7/build/lib.linux-i686-2.7/", to /home/oddron/lib/python2.7/ and now everything seems to work. Thank you On Sun, Sep 26, 2010 at 2:19 AM, Ronald Guida wrote: > Hi

Re: Python 2.7 installation problem

2010-09-26 Thread Ronald Guida
, Ronald Guida wrote: > Solved -- "make install" failed to actually install a subset of files. I > had to manually copy them instead. > > Specifics: > I started from /home/oddron/installers/python/Python-2.7/ and executed the > usual commands: > $ ./configure --prefix=

Installing new module

2010-10-11 Thread ronald brown
I uzipped to python Lib directory and try to run sample prog got this error. What am I doing wrong? Traceback (most recent call last): File "F:/Python25/Lib/MIDIUtil-0.87/a11", line 3, in from midiutil.MidiFile import MIDIFile ImportError: No module named midiutil.MidiFile -- http://mail.p

TypeError: unhashable type: 'list'

2014-12-22 Thread ronald . kevin . burton
I am getting an exception that the traceback looks like: Traceback (most recent call last): File "C:\Projects\QA\robot_20141103\resources\assessment_utilities.py", line 29, in create_new_project program = customer.add(program_code

Re: Am I missing something here? ipaddress vs socket

2015-05-01 Thread Ronald van Zantvoort
Hi Chris & Alain, thanks for responding :) On Friday, 1 May 2015 12:11:20 UTC+2, Chris Angelico wrote: > On Fri, May 1, 2015 at 7:42 PM, Ronald van Zantvoort wrote: > > Hi all, > > > > Given the following code: > > > > import ipaddress > > impo

Re: Am I missing something here? ipaddress vs socket

2015-05-01 Thread Ronald van Zantvoort
On Friday, 1 May 2015 14:06:34 UTC+2, Chris Angelico wrote: > On Fri, May 1, 2015 at 8:41 PM, Ronald van Zantvoort wrote: > > mystring is already an IP address, sorry for not mentioning that. > > The point is that ternary if; I've been scouring around the internet and &

Re: Am I missing something here? ipaddress vs socket

2015-05-01 Thread Ronald van Zantvoort
On Friday, 1 May 2015 15:46:32 UTC+2, Chris Angelico wrote: > On Fri, May 1, 2015 at 11:37 PM, Ronald van Zantvoort wrote: > > But seriously, I'll go see over there, thanks :) It's just that I'm amazed > > that this isn't in there yet; it's 2 simple prop