On Wed, Mar 7, 2018 at 7:59 PM, bartc wrote:
> On 07/03/2018 15:34, Wolfgang Maier wrote:
>>
>> On 03/07/2018 03:41 PM, Jeremy Jamar St. Julien wrote:
>>>
>>> I had an problem when trying to start the python GUI. It said there was a
>>> subprocess startup error. I was told to start IDLE in a conso
On 07/03/2018 15:34, Wolfgang Maier wrote:
On 03/07/2018 03:41 PM, Jeremy Jamar St. Julien wrote:
I had an problem when trying to start the python GUI. It said there
was a subprocess startup error. I was told to start IDLE in a console
with idlelib and see what python binary i was runnning IDLE
7, 2018 8:55:30 AM
Subject: Re: Console
On 07/03/18 14:41, Jeremy Jamar St. Julien wrote:
> I had an problem when trying to start the python GUI. It said there was a
> subprocess startup error. I was told to start IDLE in a console with idlelib
> and see what python binary i was run
On Wed, Mar 7, 2018 at 2:41 PM, Jeremy Jamar St. Julien
wrote:
> I had an problem when trying to start the python GUI. It said there was a
> subprocess startup
> error. I was told to start IDLE in a console with idlelib and see what python
> binary i was
> runnning IDLE with. Im using windows 10
On 03/07/2018 03:41 PM, Jeremy Jamar St. Julien wrote:
I had an problem when trying to start the python GUI. It said there was a subprocess
startup error. I was told to start IDLE in a console with idlelib and see what python
binary i was runnning IDLE with. Im using windows 10 and i guess cons
On 07/03/18 14:41, Jeremy Jamar St. Julien wrote:
I had an problem when trying to start the python GUI. It said there was a subprocess
startup error. I was told to start IDLE in a console with idlelib and see what python
binary i was runnning IDLE with. Im using windows 10 and i guess console r
On 8 Sep., 16:49, Thomas Jollans wrote:
> On Wednesday 08 September 2010, it occurred to Tanje Toolate to exclaim:
>
> > hi there,
>
> > greetings.
>
> > i am looking for a small, console-based (opensource) texteditor,
> > written in python (or as shellscript!), but i'm not finding something
> > u
On Wednesday 08 September 2010, it occurred to Tanje Toolate to exclaim:
> hi there,
>
>
> greetings.
>
> i am looking for a small, console-based (opensource) texteditor,
> written in python (or as shellscript!), but i'm not finding something
> usable.
Why?
(Also, I can't imagine anyone writing
>
> What operating system do you use?
>
> Colin W.
usually linux. sometimes bsd.
tanja
--
http://mail.python.org/mailman/listinfo/python-list
>
> What operating system do you use?
>
> Colin W.
usually linux. sometimes bsd.
tanja
--
http://mail.python.org/mailman/listinfo/python-list
On 08-Sep-10 04:51 AM, Tanje Toolate wrote:
hi there,
greetings.
i am looking for a small, console-based (opensource) texteditor,
written in python (or as shellscript!), but i'm not finding something
usable.
very find would be emacs-keybindings ...
dank u well,
tanja
What operating syste
On Dec 20, 12:02 pm, Terry Reedy wrote:
> On 12/20/2009 7:45 AM, mattia wrote:
>
> > Hi all, is there a way in the python shell to list the path of a library
> > function (in order to look at the source code?).
>
> On Windows and I believe other systems, for the stdlib, 'import x'
> imports .../Py
On 12/20/2009 7:45 AM, mattia wrote:
Hi all, is there a way in the python shell to list the path of a library
function (in order to look at the source code?).
On Windows and I believe other systems, for the stdlib, 'import x'
imports .../Pythonx.y/Lib/x
--
http://mail.python.org/mailman/lis
mattia wrote:
Hi all, is there a way in the python shell to list the path of a library
function (in order to look at the source code?).
Thanks, Mattia
If you know what module it's in, you can use
themodule.__file__
But realize that this will only work if the module has been imported
mattia wrote:
> Il Sun, 20 Dec 2009 13:53:18 +0100, Irmen de Jong ha scritto:
>
>> On 12/20/2009 1:45 PM, mattia wrote:
>>> Hi all, is there a way in the python shell to list the path of a
>>> library function (in order to look at the source code?).
>>>
>>> Thanks, Mattia
>>
>> something like th
Il Sun, 20 Dec 2009 13:53:18 +0100, Irmen de Jong ha scritto:
> On 12/20/2009 1:45 PM, mattia wrote:
>> Hi all, is there a way in the python shell to list the path of a
>> library function (in order to look at the source code?).
>>
>> Thanks, Mattia
>
> something like this?
>
> >>> import inspe
Il Sun, 20 Dec 2009 13:53:18 +0100, Irmen de Jong ha scritto:
> On 12/20/2009 1:45 PM, mattia wrote:
>> Hi all, is there a way in the python shell to list the path of a
>> library function (in order to look at the source code?).
>>
>> Thanks, Mattia
>
> something like this?
>
> >>> import inspe
On 12/20/2009 1:45 PM, mattia wrote:
Hi all, is there a way in the python shell to list the path of a library
function (in order to look at the source code?).
Thanks, Mattia
something like this?
>>> import inspect
>>> import os
>>> inspect.getsourcefile(os.path.split)
'C:\\Python26\\lib\\ntpa
Clement wrote:
> My project is based on console Application. Is there any console UI
> except urwid. If so, can i come to know.
You might try pytvision, http://pytvision.sourceforge.net/ , which are
python bindings for a of the old borland turbovision environment (see
http://tvision.sourceforge.
On 2007-04-08, Ayaz Ahmed Khan <[EMAIL PROTECTED]> wrote:
> "Clement" typed:
>
>> My project is based on console Application. Is there any
>> console UI except urwid. If so, can i come to know.
>
> There is ``curses''.
And newt (runs on top of slang). It's not well documented, but
it is nice and
"Clement" typed:
> My project is based on console Application. Is there any console UI
> except urwid. If so, can i come to know.
There is ``curses''.
--
Ayaz Ahmed Khan
Do what comes naturally now. Seethe and fume and throw a tantrum.
--
http://mail.python.org/mailman/listinfo/python-list
Sean Hammond schrieb:
>
> Anyone know of a good library for building text-mode user-interfaces in
> Python, like if I wanted to make an email program like Pine or Mutt?
>
> A quick Google reveals Urwid:
>
> http://excess.org/urwid/
>
> which looks pretty good.
Urwid is probably a more sophist
On 3 Jun 2005 01:21:04 -0700, Prema <[EMAIL PROTECTED]> wrote:
> Just something which will be a simple answer for someone .
> With an interactive python script, sometimes it seems necessary to
> clear the terminal in order to provide a clear presentation to users
>
> With Bash then we just do
23 matches
Mail list logo