Re: Python Shell in Russian exists/possible??

2016-10-11 Thread Андрей Логунов
среда, 12 октября 2016 г., 4:29:02 UTC+10 пользователь Michael Torrie написал: > On 10/11/2016 05:33 AM, Андрей Логунов wrote: > > I need the Python Shell for use in education (turtle graphics, etc.), > > but the UI must be localized in the Russian language. The question is > > if it's at all possi

Re: Python Shell in Russian exists/possible??

2016-10-11 Thread Michael Torrie
On 10/11/2016 05:33 AM, Андрей Логунов wrote: > I need the Python Shell for use in education (turtle graphics, etc.), > but the UI must be localized in the Russian language. The question is > if it's at all possible to feed the strings in or rebuild it or... For educational purposes, you might fin

Re: Python Shell in Russian exists/possible??

2016-10-11 Thread Steve D'Aprano
On Tue, 11 Oct 2016 10:33 pm, Андрей Логунов wrote: > I need the Python Shell for use in education (turtle graphics, etc.), but > the UI must be localized in the Russian language. The question is if it's > at all possible to feed the strings in or rebuild it or... Yes it is possible, but it is pr

Re: Python shell: Arrow keys not working in PuTTY

2015-02-25 Thread Ned Deily
In article <54ec1360$0$12978$c3e8da3$54964...@news.astraweb.com>, Steven D'Aprano wrote: > Ned Deily wrote: > > With no --prefix= on ./configure, the default install location is to > > /usr/local, so "make install" would install a link at > > /usr/local/bin/python (or python3) and it would only o

Re: Python shell: Arrow keys not working in PuTTY

2015-02-24 Thread Laura Creighton
In a message of Tue, 24 Feb 2015 11:18:38 +, David Aldrich writes: >> >> BUT do *not* run `make install` as that will overwrite your system >> >> Python and Bad Things will happen. Instead, run `make altinstall`. > >Thanks for all the warnings. We did use `make altinstall`, so all is ok. > >Rec

RE: Python shell: Arrow keys not working in PuTTY

2015-02-24 Thread David Aldrich
> >> BUT do *not* run `make install` as that will overwrite your system > >> Python and Bad Things will happen. Instead, run `make altinstall`. Thanks for all the warnings. We did use `make altinstall`, so all is ok. Recompiling, with readline installed, fixed the arrow keys. -- https://mail.pyt

Re: Python shell: Arrow keys not working in PuTTY

2015-02-23 Thread Steven D'Aprano
Ned Deily wrote: > In article <54ebdcfa$0$11100$c3e8...@news.astraweb.com>, > Steven D'Aprano wrote: >> Almost right! >> >> You can install Python from source. Unzip the source tar ball, cd into >> the source directory, and run: >> >> ./configure >> make >> >> BUT do *not* run `make install`

Re: Python shell: Arrow keys not working in PuTTY

2015-02-23 Thread Steven D'Aprano
Laura Creighton wrote: > DO NOT REBUILD PYTHON ON CENTOS! > > It can break the whole package management system > which depends on having a particular version of python installed. > > If you are running Centos you need to use virtualenv to be safe. > > Laura Almost right! You can install Pyth

RE: Python shell: Arrow keys not working in PuTTY

2015-02-23 Thread David Aldrich
Thanks for your replies, I will give readline a try. > PS: and you mention being on CentOS but running apt-get. I believe CentOS > and other Red-Hat based distros use "yum" instead of "apt-get" Yes, I think I need to use: yum install readline-devel Best regards David -- https://mail.python.o

Re: Python shell: Arrow keys not working in PuTTY

2015-02-23 Thread Tim Chase
On 2015-02-23 13:44, David Aldrich wrote: > I want to use the Python 3.4 interpreter interactively, via a PuTTY > ssh session. Python is running on Centos 5. > > Currently, the arrow keys do not work: [snip] > sudo apt-get install libreadline-dev > > followed by a rebuild of Python > > or > >

Re: Python shell: Arrow keys not working in PuTTY

2015-02-23 Thread Chris Angelico
On Tue, Feb 24, 2015 at 12:44 AM, David Aldrich wrote: > I want to use the Python 3.4 interpreter interactively, via a PuTTY ssh > session. Python is running on Centos 5. > > This stackoverflow thread: > > http://stackoverflow.com/questions/893053/python-shell-arrow-keys-do-not-work-on-remote-mac

Re: Python shell wont open idle or an exisiting py file

2014-02-01 Thread Chris Angelico
On Sat, Feb 1, 2014 at 7:51 PM, Terry Reedy wrote: > I should have added 'to C itself', as the string terminator. Oh, right. Yes, in that sense \0 is special. It's still wrong that an incoming text string gets interpreted as code, but that's probably just a consequence of the jump from Python to

Re: Python shell wont open idle or an exisiting py file

2014-02-01 Thread Terry Reedy
On 2/1/2014 2:26 AM, Chris Angelico wrote: On Sat, Feb 1, 2014 at 4:46 PM, Terry Reedy wrote: On 1/31/2014 10:36 PM, Chris Angelico wrote: On Sat, Feb 1, 2014 at 1:54 PM, MRAB wrote: I think that some years ago I heard about a variation on UTF-8 (Microsoft?) where codepoint U+ is encod

Re: Python shell wont open idle or an exisiting py file

2014-01-31 Thread Chris Angelico
On Sat, Feb 1, 2014 at 4:46 PM, Terry Reedy wrote: > On 1/31/2014 10:36 PM, Chris Angelico wrote: >> >> On Sat, Feb 1, 2014 at 1:54 PM, MRAB wrote: >>> >>> I think that some years ago I heard about a variation on UTF-8 >>> (Microsoft?) where codepoint U+ is encoded as 0xC0 0x80 so that the >>

Re: Python shell wont open idle or an exisiting py file

2014-01-31 Thread Terry Reedy
On 1/31/2014 10:36 PM, Chris Angelico wrote: On Sat, Feb 1, 2014 at 1:54 PM, MRAB wrote: I think that some years ago I heard about a variation on UTF-8 (Microsoft?) where codepoint U+ is encoded as 0xC0 0x80 so that the null byte can be used as the string terminator. I had a look on Wikipe

Re: Python shell wont open idle or an exisiting py file

2014-01-31 Thread Terry Reedy
On 1/31/2014 8:52 PM, Chris Angelico wrote: On Sat, Feb 1, 2014 at 12:45 PM, Terry Reedy wrote: H:\HP_Documents\0PythonWork\AirplaneKinematics\accel2.py caused this message UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc0 in position 14: invalid start byte So... something's interpreti

Re: Python shell wont open idle or an exisiting py file

2014-01-31 Thread Chris Angelico
On Sat, Feb 1, 2014 at 1:54 PM, MRAB wrote: > I think that some years ago I heard about a variation on UTF-8 > (Microsoft?) where codepoint U+ is encoded as 0xC0 0x80 so that the > null byte can be used as the string terminator. > > I had a look on Wikipedia found this: > > http://en.wikipedia

Re: Python shell wont open idle or an exisiting py file

2014-01-31 Thread MRAB
On 2014-02-01 01:52, Chris Angelico wrote: On Sat, Feb 1, 2014 at 12:45 PM, Terry Reedy wrote: H:\HP_Documents\0PythonWork\AirplaneKinematics\accel2.py caused this message UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc0 in position 14: invalid start byte So... something's interpretin

Re: Python shell wont open idle or an exisiting py file

2014-01-31 Thread Chris Angelico
On Sat, Feb 1, 2014 at 12:45 PM, Terry Reedy wrote: > H:\HP_Documents\0PythonWork\AirplaneKinematics\accel2.py > caused this message > UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc0 in position 14: > invalid start byte So... something's interpreting \0 as codepoint U+ (which it shou

Re: Python shell wont open idle or an exisiting py file

2014-01-31 Thread Terry Reedy
On 1/31/2014 2:51 PM, Peter Otten wrote: rpuc...@cox.net wrote: Python 3.3.3 (v3.3.3:c3896275c0f6, Nov 18 2013, 21:18:40) [MSC v.1600 32 bit (Intel)] on win32 Type "copyright", "credits" or "license()" for more information. import idlelib.idle Exception in Tkinter callback Traceback (most rec

Re: Python shell wont open idle or an exisiting py file

2014-01-31 Thread Peter Otten
rpuc...@cox.net wrote: > Python 3.3.3 (v3.3.3:c3896275c0f6, Nov 18 2013, 21:18:40) [MSC v.1600 32 > bit (Intel)] on win32 Type "copyright", "credits" or "license()" for more > information. import idlelib.idle > Exception in Tkinter callback > Traceback (most recent call last): > File "C:\Py

Re: Python shell wont open IDLE or an exisiting .py files

2014-01-30 Thread Terry Reedy
On 1/29/2014 11:16 PM, Ben Finney wrote: Terry Reedy writes: On 1/29/2014 6:26 PM, shangonich...@sbcglobal.net wrote: > If I launch the Python GUI it opens a Python Shell fine. But as > soon as I try to open a file (including a "new" file), it closes > the Shell. This I do not. What i

Re: Python shell wont open IDLE or an exisiting .py files

2014-01-29 Thread Ben Finney
Terry Reedy writes: > On 1/29/2014 6:26 PM, shangonich...@sbcglobal.net wrote: > > > If I launch the Python GUI it opens a Python Shell fine. But as > > > soon as I try to open a file (including a "new" file), it closes > > > the Shell. > > This I do not. What is 'Python GUI'? What is 'Python

Re: Python shell wont open IDLE or an exisiting .py files

2014-01-29 Thread Terry Reedy
On 1/29/2014 6:26 PM, shangonich...@sbcglobal.net wrote: I am on Windows 8, Python 3.3.4 and 3.3.3 and all previous versions exhibit the same problem on my Windows 8 PC. This problem occurred out of nowhere overnight. It was working fine for months until today. Try the following, which I believ

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-27 Thread DevPlayer
On Nov 15, 10:38 pm, goldtech wrote: > Hi, > > Using Windows. Is there a python shell that has a history of typed in > commands? > > I don't need output of commands just what I typed it. I need it to > save between sessions - something that no shell seems to do. If I > reboot there will still be a

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-25 Thread alex23
On Nov 25, 6:58 pm, Tim Golden wrote: > Do you have the pyreadline module installed? ISTR that that takes > over from the standard cmd processing... I'm pretty sure I do. It's really not an issue, though, as I tend to stick to linux & iPython where possible :) -- http://mail.python.org/mailman

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-25 Thread 88888 Dihedral
> Except that, intriguingly, I'm also using an ActiveState distro > and it neither adds Ctrl-D nor prevents history. But I'm > fairly sure that pyreadline does both of those things. > > TJG In python I can spawn a process to run python byte code that will produce a file with results. Easy to av

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-25 Thread Tim Golden
On 25/11/2011 10:37, Ulrich Eckhardt wrote: Am 25.11.2011 04:49, schrieb alex23: On Nov 24, 6:51 pm, Tim Golden wrote: The Ctrl-Z thing is what *exits* the interpreter on Windows (a la Ctrl-D on Linux). With ActivePython, Ctrl-D works as well, which is a godsend as I'm constantly working acro

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-25 Thread Ulrich Eckhardt
Am 25.11.2011 04:49, schrieb alex23: On Nov 24, 6:51 pm, Tim Golden wrote: The Ctrl-Z thing is what *exits* the interpreter on Windows (a la Ctrl-D on Linux). With ActivePython, Ctrl-D works as well, which is a godsend as I'm constantly working across Windows& linux. In short - on Windows,

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-25 Thread Tim Golden
On 25/11/2011 03:47, alex23 wrote: Tim Golden wrote: The interpreter inherits the command shell's history function: Open a cmd window and then a Python session. Do some stuff. Ctrl-Z to exit to the surrounding cmd window. Do some random cmd stuff: dir, cd, etc. Start a second Python session.

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-24 Thread alex23
Tim Golden wrote: > The interpreter inherits the command shell's history function: > Open a cmd window and then a Python session. Do some stuff. > > Ctrl-Z to exit to the surrounding cmd window. > Do some random cmd stuff: dir, cd, etc. > > Start a second Python session. up-arrow etc. will bring b

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-24 Thread alex23
On Nov 24, 6:51 pm, Tim Golden wrote: > The > Ctrl-Z thing is what *exits* the interpreter on Windows (a la Ctrl-D > on Linux). With ActivePython, Ctrl-D works as well, which is a godsend as I'm constantly working across Windows & linux. > In short - on Windows, within one cmd shell you can open

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-24 Thread Ulrich Eckhardt
Am 17.11.2011 00:59, schrieb Ben Finney: David Robinow writes: but your code works fine on Windows. Thanks. I'm glad to know that. Perhaps you could investigate why, and suggest an update to the above documentation if it's wrong? The bug tracker at http://bugs.python.org/> would be the appro

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-24 Thread Tim Golden
On 24/11/2011 06:22, Chris Angelico wrote: On Thu, Nov 24, 2011 at 5:11 PM, Steven D'Aprano wrote: One of us is confused, and I'm pretty sure it's you :) Tim went on to say "Obviously this only applies when an underlying cmd session persists", which I understood as implying that he too is usi

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-23 Thread Chris Angelico
On Thu, Nov 24, 2011 at 5:11 PM, Steven D'Aprano wrote: > One of us is confused, and I'm pretty sure it's you :) > > Tim went on to say "Obviously this only applies when an underlying cmd > session persists", which I understood as implying that he too is using > Linux where Ctrl-Z stops the proces

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-23 Thread Steven D'Aprano
On Thu, 24 Nov 2011 15:30:57 +1100, Chris Angelico wrote: > On Thu, Nov 24, 2011 at 1:16 PM, Steven D'Aprano > wrote: >> On Wed, 23 Nov 2011 10:37:56 +, Tim Golden wrote: >> >>> The interpreter inherits the command shell's history function: Open a >>> cmd window and then a Python session. Do

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-23 Thread Chris Angelico
On Thu, Nov 24, 2011 at 1:16 PM, Steven D'Aprano wrote: > On Wed, 23 Nov 2011 10:37:56 +, Tim Golden wrote: > >> The interpreter inherits the command shell's history function: Open a >> cmd window and then a Python session. Do some stuff. >> >> Ctrl-Z to exit to the surrounding cmd window. Do

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-23 Thread Steven D'Aprano
On Wed, 23 Nov 2011 10:37:56 +, Tim Golden wrote: > The interpreter inherits the command shell's history function: Open a > cmd window and then a Python session. Do some stuff. > > Ctrl-Z to exit to the surrounding cmd window. Do some random cmd stuff: > dir, cd, etc. > > Start a second Pyth

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-23 Thread Tim Golden
On 23/11/2011 10:29, Steven D'Aprano wrote: On Wed, 23 Nov 2011 11:23:19 +0200, Anssi Saari wrote: goldtech writes: Using Windows. Is there a python shell that has a history of typed in commands? Is there a shell that doesn't have history then? At least both the vanilla shell and Idle both

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-23 Thread Steven D'Aprano
On Wed, 23 Nov 2011 11:23:19 +0200, Anssi Saari wrote: > goldtech writes: > >> Using Windows. Is there a python shell that has a history of typed in >> commands? > > Is there a shell that doesn't have history then? At least both the > vanilla shell and Idle both have basic history in Windows. I

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-23 Thread Anssi Saari
goldtech writes: > Using Windows. Is there a python shell that has a history of typed in > commands? Is there a shell that doesn't have history then? At least both the vanilla shell and Idle both have basic history in Windows. IPython for more fun. -- http://mail.python.org/mailman/listinfo/pyt

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-16 Thread alex23
On Nov 17, 7:09 am, Ben Finney wrote: > You can then use that functionality in your Python interactive startup > file. Here's mine: Awesome, thank you for this. I use iPython where ever possible but there are times where I just can't avoid the default shell and this will help immensely. Cheers!

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-16 Thread David Robinow
On Wed, Nov 16, 2011 at 6:59 PM, Ben Finney wrote: > David Robinow writes: > >> On Wed, Nov 16, 2011 at 4:09 PM, Ben Finney >> wrote: >> > I don't know about MS Windows, but the Python interactive shell can be >> > linked with the GNU Readline library for managing its command line >> > http://d

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-16 Thread Ben Finney
David Robinow writes: > On Wed, Nov 16, 2011 at 4:09 PM, Ben Finney > wrote: > > I don't know about MS Windows, but the Python interactive shell can be > > linked with the GNU Readline library for managing its command line > > http://docs.python.org/library/readline.html> […] > > Reading the d

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-16 Thread David Robinow
On Wed, Nov 16, 2011 at 4:09 PM, Ben Finney wrote: > goldtech writes: > >> Using Windows. Is there a python shell that has a history of typed in >> commands? > > I don't know about MS Windows, but the Python interactive shell can be > linked with the GNU Readline library for managing its command

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-16 Thread Ben Finney
goldtech writes: > Using Windows. Is there a python shell that has a history of typed in > commands? I don't know about MS Windows, but the Python interactive shell can be linked with the GNU Readline library for managing its command line http://docs.python.org/library/readline.html> including e

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-16 Thread Tim Golden
On 16/11/2011 03:38, goldtech wrote: Hi, Using Windows. Is there a python shell that has a history of typed in commands? Have a look at DreamPie: http://dreampie.sourceforge.net/ TJG -- http://mail.python.org/mailman/listinfo/python-list

Re: python shell that saves history of typed in commands that will persist between reboots

2011-11-15 Thread sword
Maybe you're looking for ipython? History, tab-complete, sort of things in it. goldtech wrote: > Hi, > > Using Windows. Is there a python shell that has a history of typed in > commands? > > I don't need output of commands just what I typed it. I need it to > save between sessions - something that

Re: python shell silently ignores termios.tcsetattr()

2010-10-22 Thread Lawrence D'Oliveiro
In message , kj wrote: > What's wrong with it is that what python thinks is a "reasonable > state" is actually wrong in this case (it differs from the default > setting established by the Emacs shell). I personally wouldn’t try to run one program that wants to do its own interactive terminal con

Re: python shell silently ignores termios.tcsetattr()

2010-10-21 Thread Nobody
On Wed, 20 Oct 2010 16:18:57 +, kj wrote: > I tried to fix the problem by applying the equivalent of "stty -echo" > within a python interactive session, but discovered that this setting is > immediately (and silently) overwritten. FWIW, I don't see this behaviour with Python 2.6.5 on Linux. I

Re: python shell silently ignores termios.tcsetattr()

2010-10-21 Thread kj
In Lawrence D'Oliveiro writes: >In message , kj wrote: >> I tried to fix the problem by applying the equivalent of "stty >> -echo" within a python interactive session, but discovered that >> this setting is immediately (and silently) overwritten. >That seems reasonable behaviour; the command

Re: python shell silently ignores termios.tcsetattr()

2010-10-20 Thread Lawrence D'Oliveiro
In message , kj wrote: > I tried to fix the problem by applying the equivalent of "stty > -echo" within a python interactive session, but discovered that > this setting is immediately (and silently) overwritten. That seems reasonable behaviour; the command loop is resetting the terminal to a rea

Re: python shell crashing on paste

2010-03-01 Thread Leo
Thanks for responding Michel. It looks like its an issue with pyreadline - http://ipython.scipy.org/moin/PyReadline/Intro - causing the crash. I'm working with the author of it on trying to get the issue figured out. It's not related to UAC. -- --Leo On Feb 23, 10:41 pm, "Michel Claveau - MVP" w

Re: python shell crashing on paste

2010-02-23 Thread Michel Claveau - MVP
Hi! Where (directory) are you, when the problem come? Have you try with UAC disabled? @+ -- MCI -- http://mail.python.org/mailman/listinfo/python-list

Re: Python shell scripting and errors

2009-02-23 Thread birdsong
On Feb 23, 9:34 am, Philip Semanchuk wrote: > On Feb 23, 2009, at 12:21 PM, Tim Wintle wrote: > > > On Mon, 2009-02-23 at 09:12 -0800, Phillip B Oldham wrote: > >> I've got a python script running as a daemon (using someone else's > >> daemon module). It runs fine for a while, but will occasionall

Re: Python shell scripting and errors

2009-02-23 Thread Philip Semanchuk
On Feb 23, 2009, at 12:21 PM, Tim Wintle wrote: On Mon, 2009-02-23 at 09:12 -0800, Phillip B Oldham wrote: I've got a python script running as a daemon (using someone else's daemon module). It runs fine for a while, but will occasionally balk and die. Since its running in the background, I'm g

Re: Python shell scripting and errors

2009-02-23 Thread Tim Wintle
On Mon, 2009-02-23 at 09:12 -0800, Phillip B Oldham wrote: > I've got a python script running as a daemon (using someone else's > daemon module). It runs fine for a while, but will occasionally balk > and die. Since its running in the background, I'm getting no error > from it. > > What's the best

Re: python shell/Intermediate Python tools.

2007-05-21 Thread Cameron Laird
In article <[EMAIL PROTECTED]>, Paddy <[EMAIL PROTECTED]> wrote: . . . >Sometimes you have to mess with the case of letters in wiki pages >which is the case here, but I did actually cut-n-paste the address >from Wikipedia as I

Re: python shell

2007-05-20 Thread JussiJ
On May 17, 3:38 am, Krypto <[EMAIL PROTECTED]> wrote: > My mentor told me that you can virtually do anything from > testing your program to anything in the shell. Any incite > would be useful. Using something like tee you can run the Python script in the shell and also capture it's output: h

Re: python shell

2007-05-20 Thread Steve Holden
Douglas Woodrow wrote: > On Sat, 19 May 2007 21:42:27, Steve Holden <[EMAIL PROTECTED]> wrote > >> http://en.wikipedia.org/wiki/Doctest > >> Since you claim to be exercising your pedantry, I wonder why I get the >> results I do. Since we *are* being pedantic, by the way, surely the >> name is

Re: python shell/Intermediate Python tools.

2007-05-20 Thread Paddy
On May 20, 1:56 am, [EMAIL PROTECTED] (Cameron Laird) wrote: > In article <[EMAIL PROTECTED]>,Paddy <[EMAIL PROTECTED]> wrote: > >On May 16, 6:38 pm, Krypto <[EMAIL PROTECTED]> wrote: > >> I have been using python shell to test small parts of the big program. > >> What other ways can I use the she

Re: python shell

2007-05-20 Thread Douglas Woodrow
On Sat, 19 May 2007 21:42:27, Steve Holden <[EMAIL PROTECTED]> wrote > http://en.wikipedia.org/wiki/Doctest >Since you claim to be exercising your pedantry, I wonder why I get the >results I do. Since we *are* being pedantic, by the way, surely the >name is actually "doctest", not "Doctest".

Re: python shell

2007-05-19 Thread Peter Anderson
Krypto wrote: > I have been using python shell to test small parts of the big program. > What other ways can I use the shell effectively. My mentor told me > that you can virtually do anything from testing your program to > anything in the shell. Any incite would be useful. > I'm not sure this wi

Re: python shell

2007-05-19 Thread Steve Holden
Cameron Laird wrote: > In article <[EMAIL PROTECTED]>, > Paddy <[EMAIL PROTECTED]> wrote: >> On May 16, 6:38 pm, Krypto <[EMAIL PROTECTED]> wrote: >>> I have been using python shell to test small parts of the big program. >>> What other ways can I use the shell effectively. My mentor told me >>> t

Re: python shell

2007-05-19 Thread Cameron Laird
In article <[EMAIL PROTECTED]>, Paddy <[EMAIL PROTECTED]> wrote: >On May 16, 6:38 pm, Krypto <[EMAIL PROTECTED]> wrote: >> I have been using python shell to test small parts of the big program. >> What other ways can I use the shell effectively. My mentor told me >> that you can virtually do anyth

Re: python shell

2007-05-18 Thread Paddy
On May 16, 6:38 pm, Krypto <[EMAIL PROTECTED]> wrote: > I have been using python shell to test small parts of the big program. > What other ways can I use the shell effectively. My mentor told me > that you can virtually do anything from testing your program to > anything in the shell. Any incite w

Re: python shell

2007-05-16 Thread James T. Dennis
[EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > On May 16, 12:38 pm, Krypto <[EMAIL PROTECTED]> wrote: >> I have been using python shell to test small parts of the big program. >> What other ways can I use the shell effectively. My mentor told me >> that you can virtually do anything from testing yo

Re: python shell

2007-05-16 Thread [EMAIL PROTECTED]
On May 16, 12:38 pm, Krypto <[EMAIL PROTECTED]> wrote: > I have been using python shell to test small parts of the big program. > What other ways can I use the shell effectively. My mentor told me > that you can virtually do anything from testing your program to > anything in the shell. Any incite

Re: python shell

2007-05-16 Thread Thorsten Kampe
* Krypto (16 May 2007 10:38:27 -0700) > I have been using python shell to test small parts of the big program. > What other ways can I use the shell effectively. My mentor told me > that you can virtually do anything from testing your program to > anything in the shell. Any incite would be useful.

Re: Python shell on mac os x

2007-03-19 Thread Lou Pecora
In article <[EMAIL PROTECTED]>, Kevin Walzer <[EMAIL PROTECTED]> wrote: > 7stud wrote: > > On Mar 16, 2:53 am, [EMAIL PROTECTED] wrote: > >> or go tohttp://pythonmac.org/packages/ > >> and you have python 2.5 or python 2.4.4 with readline support > > > > The download instructions seem to steer

Re: Python shell on mac os x

2007-03-17 Thread Kevin Walzer
7stud wrote: > On Mar 16, 2:53 am, [EMAIL PROTECTED] wrote: >> or go tohttp://pythonmac.org/packages/ >> and you have python 2.5 or python 2.4.4 with readline support > > The download instructions seem to steer Mac users to version 2.4.4 > because it has more modules available. What is the consen

Re: Python shell on mac os x

2007-03-16 Thread 7stud
On Mar 16, 2:53 am, [EMAIL PROTECTED] wrote: > or go tohttp://pythonmac.org/packages/ > and you have python 2.5 or python 2.4.4 with readline support The download instructions seem to steer Mac users to version 2.4.4 because it has more modules available. What is the consensus on that? -- http:

Re: Python shell on mac os x

2007-03-16 Thread Bert Heymans
On Mar 16, 4:08 am, [EMAIL PROTECTED] (Alex Martelli) wrote: > Bert Heymans <[EMAIL PROTECTED]> wrote: > > Hi! > > > I'm using iTerm on the mac the keymapping isn't right. On Linux and > > Windows it's really nice to be able to hit up to get the previous > > command. Does anyone know a way to get t

Re: Python shell on mac os x

2007-03-16 Thread martin . laloux
or go to http://pythonmac.org/packages/ and you have python 2.5 or python 2.4.4 with readline support -- http://mail.python.org/mailman/listinfo/python-list

Re: Python shell on mac os x

2007-03-15 Thread Alex Martelli
Bert Heymans <[EMAIL PROTECTED]> wrote: > Hi! > > I'm using iTerm on the mac the keymapping isn't right. On Linux and > Windows it's really nice to be able to hit up to get the previous > command. Does anyone know a way to get the Pyhton shell to work like > on other systems, I always get this wh

Re: Python shell on mac os x

2007-03-15 Thread Sick Monkey
I use iTerm and it took me a while to get use to it as well. All you have to do is go to "Bookmarks-> Manage Profiles" Then expand "Terminal Profiles ->Default" and then for "type" select "linux". You may have to restart iTerm, but you will be able to do everything you can in linux. Let me kno

Re: Python shell on mac os x

2007-03-15 Thread Greg Donald
On 15 Mar 2007 14:56:13 -0700, Bert Heymans <[EMAIL PROTECTED]> wrote: > >>> ^[OA^[OC^[OD Is your python built with readline support? Also, you might check out iPython. -- Greg Donald http://destiney.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Shell window

2006-04-10 Thread jay graves
> find the errand CMD prompt and move it. errand -> errant -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Shell window

2006-04-10 Thread jay graves
Jay wrote: > Is their any way of setting wear the Python Shell window appears on the > screen when I run my program? > > I am testing a full screen program with no Window Frame on a comp with > 2 monitors and I have to keep pressing the Key to bring the > Shell to the front and then moving it manu

Re: Python shell interpreting delete key as tilde?

2006-01-21 Thread Fuzzyman
Fredrik Lundh wrote: [snip..] > > this page might help: > > http://www.ibb.net/~anne/keyboard.html > > or you could switch to a less lame operating system ;-) (duck). Not like you to duck when sending flames Fredrik ;-) Fuzzy > > -- http://mail.python.org/mailman/listinfo/python-list

Re: Python shell interpreting delete key as tilde?

2006-01-21 Thread Fredrik Lundh
Leif K-Brooks wrote: > I'm running Python 2.3.5 and 2.4.1 under Debian Sarge. Instead of > deleting the character after the cursor, pressing my "delete" key in an > interactive Python window causes a system beep and inserts a tilde > character. that's probably because the delete key can be set up

Re: Python Shell (IDLE) Lag

2005-09-25 Thread dumbandjaded
Just a little addendum... this lag only happens when the output is a very long continuous string. If I print out 3000 or so LINES of output there's no problem, its only when it's one long continuous string. -- http://mail.python.org/mailman/listinfo/python-list