On 5-6-2020 08:49, Luuk wrote:
On 5-6-2020 06:12, Michael Torrie wrote:
On 6/4/20 2:47 AM, Filip Bascarevic wrote:
When I tried to build GDB with Python support on Linux, I realized I
couldn’t find embeddable python for Linux.
Please, can you give me some instructions how can I build embeddabl
On 5-6-2020 06:12, Michael Torrie wrote:
On 6/4/20 2:47 AM, Filip Bascarevic wrote:
When I tried to build GDB with Python support on Linux, I realized I
couldn’t find embeddable python for Linux.
Please, can you give me some instructions how can I build embeddable Python
from source in Linux? I
On 6/4/20 2:47 AM, Filip Bascarevic wrote:
> When I tried to build GDB with Python support on Linux, I realized I
> couldn’t find embeddable python for Linux.
>
> Please, can you give me some instructions how can I build embeddable Python
> from source in Linux? Is it possible in the Linux environ
Dear Python team,
I have tried to build the GDB with Python support for windows. Because I
didn’t want to have any Python dependence on building system, I decided to
embed python in GDB using Windows x86_64 embeddable zip file and with it I
had success.
When I tried to build GDB with Python sup
On Sat, Oct 11, 2014 at 2:44 AM, Peter Pearson
wrote:
> On Fri, 10 Oct 2014 08:31:04 +0200, Irmen de Jong wrote:
>> On 10-10-2014 6:21, Igor Korot wrote:
>
>>> When I am on Windows, I can write something like this:
>>>
>>> sys.path.append('C:\Users\Igor\Documents\MyLib')
>>
>> While this might wor
On Fri, Oct 10, 2014 at 12:31 AM, Irmen de Jong wrote:
> - you need to escape the backslashes (or just use forward slashes, they work
> on windows too)
Or use a raw string. There is usually no reason to have escape
sequences at all in a file system path.
--
https://mail.python.org/mailman/listi
On Fri, 10 Oct 2014 08:31:04 +0200, Irmen de Jong wrote:
> On 10-10-2014 6:21, Igor Korot wrote:
>> When I am on Windows, I can write something like this:
>>
>> sys.path.append('C:\Users\Igor\Documents\MyLib')
>
> While this might work on your system, it may not work on others.
>
> - you need to
On 10-10-2014 8:58, Chris Angelico wrote:
> AIUI you can use os.path.expanduser() on Windows as well, and it'll
> take care of USERPROFILE.
Nice, didn't know that!
I've been using the appdirs module (https://pypi.python.org/pypi/appdirs/) as
well to
avoid constructing paths manually altogether.
On Fri, Oct 10, 2014 at 5:31 PM, Irmen de Jong wrote:
> On 10-10-2014 6:21, Igor Korot wrote:
>> Hi, ALL,
>> When I am on Windows, I can write something like this:
>>
>> sys.path.append('C:\Users\Igor\Documents\MyLib')
>
> While this might work on your system, it may not work on others.
>
> - you
On 10-10-2014 6:21, Igor Korot wrote:
> Hi, ALL,
> When I am on Windows, I can write something like this:
>
> sys.path.append('C:\Users\Igor\Documents\MyLib')
While this might work on your system, it may not work on others.
- you need to escape the backslashes (or just use forward slashes, they
In Igor Korot
writes:
> sys.path.append('~/MyLib')
> I.e., will '~' sign be expanded correctly?
Not as written.
Use os.path.expanduser() to get user's home directories.
--
John Gordon Imagine what it must be like for a real medical doctor to
gor...@panix.comwatch 'House', or a
Try:
sys.path.append(os.path.expanduser('~/MyLib'))
On Thu, Oct 9, 2014 at 9:21 PM, Igor Korot wrote:
> Hi, ALL,
> When I am on Windows, I can write something like this:
>
> sys.path.append('C:\Users\Igor\Documents\MyLib')
>
> Now, when I'm on Linux, can I do this:
>
> sys.path.append('~/MyLib')
Hi, ALL,
When I am on Windows, I can write something like this:
sys.path.append('C:\Users\Igor\Documents\MyLib')
Now, when I'm on Linux, can I do this:
sys.path.append('~/MyLib')
?
I.e., will '~' sign be expanded correctly?
Thank you.
--
https://mail.python.org/mailman/listinfo/python-list
On 15Sep2011 17:30, Genevi�ve Diagorn wrote:
| I work on projects developed in Python 2.3 on Solaris. The customer asks us
| to pass on LINUX in a recent version of Python.
|
| Is it someone has already realized this modification? What are the traps to
| be avoided?
|
| Is it a long and difficul
I think that was more of a version question the Kernel questin
1) you can install any and all versions python on a linux computer.
You just need you app to select the correct path, correct python
interpret. Likely there many be some some drivers in /dev that are
not the same as in Solaris. But th
> What are the traps to be avoided?
Assuming you're not using any OS features (scan the code for "/dev" and
"/proc"), the transition from Solaris to Linux will be seamless.
Your main problem will be the transition from the archaic Python 2.3 to
a modern one. Luckily, all 2.x Pythons should be bac
Hi,
I work on projects developed in Python 2.3 on Solaris. The customer asks us
to pass on LINUX in a recent version of Python.
Is it someone has already realized this modification? What are the traps to
be avoided?
Is it a long and difficult phase?
What is the most recent version on LINUX?
En Thu, 12 Mar 2009 16:52:38 -0200, Royce Wilson
escribió:
Thanks, much better. What exactly do I lose when I launch python without
site.py?
site.py completes the module search path (sys.path), adding the
site-packages directory, processing .pth files, and other per-site and
per-user co
En Thu, 12 Mar 2009 20:39:47 -0200, Royce Wilson
escribió:
Is there a way to veiw the modules without import sys? Thanks again.
sys is a builtin module. You don't add any dependency by importing it, if
that's your concern.
--
Gabriel Genellina
--
http://mail.python.org/mailman/listinfo
Royce Wilson schrieb:
> Thanks, much better. What exactly do I lose when I launch python without
> site.py?
Why do you want to strip Python off everything useful? A bare
interpreter without the standard library isn't useful for anything.
Christian
--
http://mail.python.org/mailman/listinfo/pytho
Is there a way to veiw the modules without import sys? Thanks again.
On Thu, Mar 12, 2009 at 1:52 PM, Royce Wilson wrote:
> Thanks, much better. What exactly do I lose when I launch python without
> site.py?
>
>
> On Wed, Mar 11, 2009 at 10:27 PM, Gabriel Genellina <
> gagsl-...@yahoo.com.ar> wr
Thanks, much better. What exactly do I lose when I launch python without
site.py?
On Wed, Mar 11, 2009 at 10:27 PM, Gabriel Genellina
wrote:
> En Thu, 12 Mar 2009 00:41:18 -0200, Royce Wilson
> escribió:
>
>> On Wed, Mar 11, 2009 at 9:33 PM, Royce Wilson wrote:
>>
>> Thanks for the quick respo
En Thu, 12 Mar 2009 00:41:18 -0200, Royce Wilson
escribió:
On Wed, Mar 11, 2009 at 9:33 PM, Royce Wilson wrote:
Thanks for the quick responses. When I view sys.modules I get this:
sre_compile _collections locale _sre functools encodings site operator
io
__main__ copyreg _weakref abc buil
On Wed, Mar 11, 2009 at 9:33 PM, Royce Wilson wrote:
> Thanks for the quick responses. When I view sys.modules I get this:
>
> sre_compile _collections locale _sre functools encodings site operator io
> __main__ copyreg _weakref abc builtins encodings.cp437 errno sre_constants
> re encodings.lat
En Wed, 11 Mar 2009 23:09:51 -0200, Royce Wilson
escribió:
I'm working on a minimilistic linux project and would like to include
Python. However, since Python is around 17MB (compressed) and previous
releases of this linux distro are under 100MB (compressed) standard
Python
releases are m
Royce Wilson schrieb:
> I'm working on a minimilistic linux project and would like to include
> Python. However, since Python is around 17MB (compressed) and previous
> releases of this linux distro are under 100MB (compressed) standard Python
> releases are much to large. I just need the runtime
I'm working on a minimilistic linux project and would like to include
Python. However, since Python is around 17MB (compressed) and previous
releases of this linux distro are under 100MB (compressed) standard Python
releases are much to large. I just need the runtime libs of Python, the
absoulute
Frank Potter wrote:
>> ... where is the executable python file? ...
>>
>
> does
>
> whereis python
"whereis" is cool!
--
http://mail.python.org/mailman/listinfo/python-list
Hi Frank,
Usually "Python" is installed in /usr/lib/python[VER] but you should be
able to call up /usr/bin/python without any difficulty.
Harlin Seritt
Frank Potter wrote:
> I installed fedora core 6 and it has python installed.
> But the question is, where is the executable python file?
> I ca
$ whoami
cannibal
;-)
Hendrik van Rooyen wrote:
> "rzed" <[EMAIL PROTECTED]> wrote:
>
>
>
>>mmm... sloppy joes
>>
>>--
>>rzed
>>
>>"A sandwich is a sandwich, but a Manwich is a meal."
>
>
> You eat people?
>
> - Hendrik
>
>
--
http://mail.python.org/mailman/listinfo/python-l
"rzed" <[EMAIL PROTECTED]> wrote:
>mmm... sloppy joes
>
>--
>rzed
>
>"A sandwich is a sandwich, but a Manwich is a meal."
You eat people?
- Hendrik
--
http://mail.python.org/mailman/listinfo/python-list
Bruno Desthuilliers <[EMAIL PROTECTED]> wrote
in news:[EMAIL PROTECTED]:
> Frank Potter a écrit :
>> I installed fedora core 6 and it has python installed.
>> But the question is, where is the executable python file?
>> I can't find it so I come here for help.
>
> man which
>
>
mmm... slo
Frank Potter a écrit :
> I installed fedora core 6 and it has python installed.
> But the question is, where is the executable python file?
> I can't find it so I come here for help.
man which
--
http://mail.python.org/mailman/listinfo/python-list
on linux type:
whereis python
You should get a list of directories where all of
python lives.
jim-on-linux
http:\\www.inqvista.com
On Sunday 07 January 2007 04:05, Frank Potter
wrote:
> I installed fedora core 6 and it has python
> installed. But the question is, where is the
> executable
Thank you!
"which python" works for me.
I got it.
Peter Otten wrote:
> Frank Potter wrote:
>
> > I installed fedora core 6 and it has python installed.
> > But the question is, where is the executable python file?
>
> Find out yourself with
>
> $ which python
>
> Peter
--
http://mail.python.or
Frank Potter wrote:
> I installed fedora core 6 and it has python installed.
> But the question is, where is the executable python file?
Find out yourself with
$ which python
Peter
--
http://mail.python.org/mailman/listinfo/python-list
Frank Potter wrote:
> ... where is the executable python file? ...
does
whereis python
tell you what you want to know?
sebastian.
--
http://mail.python.org/mailman/listinfo/python-list
I installed fedora core 6 and it has python installed.
But the question is, where is the executable python file?
I can't find it so I come here for help.
I want to config pydev for eclipse and I need to know where the
ececutable python file is.
Thank you!
--
http://mail.python.org/mailman/listinf
In article <[EMAIL PROTECTED]>,
"gmax2006" <[EMAIL PROTECTED]> wrote:
>I am having hard time with installing MySQLdb on Linux.
...
>My Linux is "Red Hat Enterprise Linux ES release 4 (Nahant)"
Why don't you just use yum to install python-mysql or whatever the
package is called, and have it au
Hi,
I am having hard time with installing MySQLdb on Linux.
My Python version is 2.3. I have downloaded
"MySQL-python-1.2.1_p2.tar.gz" from sourceforge. The README file
asks for MySQL installation. My MySql server is on another box. That is
why I think I should to install just the MySql client (a
spooky wrote:
> Hey,
>
>> Try looking at the wx.HtmlWindow demo
>
> Thank you...I know wx.HtmlWindow but that object can not parse
> Javascript code :((
>
> I need a cross-platform object that can parse js-scripts :(
>
> Can someone help me??
>
> Bye,
>
> Spooky
http://wxmozilla.sourceforge
Hey,
> Try looking at the wx.HtmlWindow demo
Thank you...I know wx.HtmlWindow but that object can not parse
Javascript code :((
I need a cross-platform object that can parse js-scripts :(
Can someone help me??
Bye,
Spooky
--
http://mail.python.org/mailman/listinfo/python-list
Hi Spooky,
Try looking at the wx.HtmlWindow demo - it is cross platform and is
pretty capable.
Thanks,
Davy Mitchell
http://www.latedecember.com/sites/personal/davy/
--
http://mail.python.org/mailman/listinfo/python-list
IE is for Windows...I need something for unix-systems :(
Thx
--
spooky
--
http://mail.python.org/mailman/listinfo/python-list
The wx demos contain an embedded browser (integrates an IE window)
example.
spooky wrote:
> Hey,
>
> For windows there is a object wx.lib.iewin to integrate a browserwindow
> into a python-wx-application.
> I need a similar object, that runs under linux.
>
> Need help!!!
>
> Thx,
>
> Spooky
--
The wx demos contain an embedded browser (integrates an IE window)
example.
spooky wrote:
> Hey,
>
> For windows there is a object wx.lib.iewin to integrate a browserwindow
> into a python-wx-application.
> I need a similar object, that runs under linux.
>
> Need help!!!
>
> Thx,
>
> Spooky
--
Hey,
For windows there is a object wx.lib.iewin to integrate a browserwindow
into a python-wx-application.
I need a similar object, that runs under linux.
Need help!!!
Thx,
Spooky
--
http://mail.python.org/mailman/listinfo/python-list
You know, I have that for Perl, but seem never to have set up folding
for Python. I must remedy this tonight.
Ben
--
http://mail.python.org/mailman/listinfo/python-list
On 2/19/06, Mladen Adamovic <[EMAIL PROTECTED]> wrote:
> Hi!
>
> I wonder which editor or IDE you can recommend me for writing Python
> programs. I tried with jEdit but it isn't perfect.
>
I know you said in the thread that you had problems with jEdit for
Python, and didn't care for Emacs or Vi(m)
The indentation-based folding in vim makes it great
for python; other folding editors might be almost as
good.
--
http://mail.python.org/mailman/listinfo/python-list
Mladen Adamovic wrote:
> Hi!
>
> I wonder which editor or IDE you can recommend me for writing Python
> programs. I tried with jEdit but it isn't perfect.
Eclipse + pydev
--
http://mail.python.org/mailman/listinfo/python-list
On 2006-02-19, Mladen Adamovic <[EMAIL PROTECTED]> wrote:
> I wonder which editor or IDE you can recommend me for writing
> Python programs. I tried with jEdit but it isn't perfect.
jed
--
Grant Edwards grante Yow! Vote for ME
at
Mladen Adamovic wrote:
> Hi!
>
> I wonder which editor or IDE you can recommend me for writing Python
> programs. I tried with jEdit but it isn't perfect.
>
NEdit
--
(remove zeez if demunging email address)
--
http://mail.python.org/mailman/listinfo/python-list
pida is a great ide as well:
http://pida.vm.bytemark.co.uk/projects/pida
--
http://mail.python.org/mailman/listinfo/python-list
>>I really think that IDLE is one of the best around in Python source editing.
>
> For me, I find that IDLE is about the worse for editing Python sources.
"Worse"? Now that's harsh. I'm with billie on this one. I usually spend a day
or so every 3 months trying to find a free python editor that s
My favourite is Kate, available on KDE but working great also on Gnome!2006/2/21, Fabio Zadrozny <[EMAIL PROTECTED]>:
Well... pydev has it: http://pydev.sf.net and pydev extensions goes muchfurther: http://www.fabioz.com/pydevCheers,Fabio
jean-michel bain-cornu wrote:>>Boa-Constructor is an IDE rat
Well... pydev has it: http://pydev.sf.net and pydev extensions goes much
further: http://www.fabioz.com/pydev
Cheers,
Fabio
jean-michel bain-cornu wrote:
>>Boa-Constructor is an IDE rather than an editor. Although it focuses
>>on wxPython, it has a good editor.
>>
>>
>Yes, some possibilit
> "Sriram" == Sriram Krishnan <[EMAIL PROTECTED]> writes:
>> Mladen Adamovic wrote:
>> Hi! I wonder which editor or IDE you can recommend me for
>> writing Python programs. I tried with jEdit but it isn't
>> perfect.
>>
Check out http://wiki.python.org/moin/PythonEditors
On 2/20/06, billie <[EMAIL PROTECTED]> wrote:
> I really think that IDLE is one of the best around in Python source editing.
For me, I find that IDLE is about the worse for editing Python sources.
I used to use Notepad++ before I started using Boa. Sometimes I still
use Notepad++ because I can eas
Benji York wrote:
> I don't know anything about gedit, but why not take Emacs and Vim (not
> vi) seriously?
I'm not used to their approach.
I usually program in Java but recently I reliazed if I'm making Linux
shell scripts, Python seems to be good choice to me.
So, that Pydev Eclipse plug-in
[EMAIL PROTECTED] wrote:
> Actually gedit does have syntax highlighting and works quite well.
Uops, it seems that I should give a second chance to it, I haven't
noticed its settings.
> If you put down emacs so casually you obviously have no experience with
> one of the most powerful text editors
> (I never saw this elsewhere).
FYI SPE has these two features as well...
Stani
---
SPE - http://pythonide.stani.be
--
http://mail.python.org/mailman/listinfo/python-list
Mladen Adamovic napisał(a):
> I wonder which editor or IDE you can recommend me for writing Python
> programs. I tried with jEdit but it isn't perfect.
Komodo isn't perfect either. Nothing is perfect, except God and human
laziness.
I like Komodo, it plays well with my laziness.
--
Jarek Zgoda
> Boa-Constructor is an IDE rather than an editor. Although it focuses
> on wxPython, it has a good editor.
Yes, some possibilities are pretty good, like for instance the
findAll/findInFiles keeping the results in a new tab (I never saw this
elsewhere). Another useful is having the debugger laun
Mladen Adamovic wrote:
> Answers like vi, emacs and gedit I won't take seriously.
I don't know anything about gedit, but why not take Emacs and Vim (not
vi) seriously?
> I would like syntax highlighting, auto ident and if possible auto
> completition and embedded help.
Both certainly give you
Mladen Adamovic wrote:
> Mladen Adamovic wrote:
> > I wonder which editor or IDE you can recommend me for writing Python
> > programs. I tried with jEdit but it isn't perfect.
>
> I've got a lot of replies on this message.
> In jEdit auto ident don't work OK.
>
> Answers like vi, emacs and gedit I
Mladen Adamovic wrote:
> I wonder which editor or IDE you can recommend me for writing Python
> programs. I tried with jEdit but it isn't perfect.
I've got a lot of replies on this message.
In jEdit auto ident don't work OK.
Answers like vi, emacs and gedit I won't take seriously.
For gods sake,
He said "IDE." That means "vim"
--
http://mail.python.org/mailman/listinfo/python-list
You could try Eclipse with Pydev: http://pydev.sf.net
or its commercial counterpart: Pydev Extensions:
http://www.fabioz.com/pydev
-- runs on linux / mac / windows ...
Cheers,
Fabio
--
Fabio Zadrozny
--
Software Developer
ESSS - Engineering
On 2006-02-19, Rene Pijlman <[EMAIL PROTECTED]> wrote:
>>I beg to disagree :-) Use ed
>>"Ed is the standard text editor."
>>http://www.gnu.org/fun/jokes/ed.msg.html
>
> That was 1991. This is 2006.
That's a joke, son. A flag waver. You're built too low. The
fast ones go over your head. Ya
On Sun, 19 Feb 2006 20:52:54 +0100, Mladen Adamovic
<[EMAIL PROTECTED]> wrote:
>Hi!
>
>I wonder which editor or IDE you can recommend me for writing Python
>programs. I tried with jEdit but it isn't perfect.
Maybe you try out DrPython.
(Written in Python and wxPython, Autocompletion, Calltips,
It was said that Boa is good, but I prefer SPE.
WingIDE is good but commercial, I tried it but didn't buy.
--
http://mail.python.org/mailman/listinfo/python-list
On Sun, 19 Feb 2006 20:52:54 +0100, Mladen Adamovic wrote:
> Hi!
>
> I wonder which editor or IDE you can recommend me for writing Python
> programs. I tried with jEdit but it isn't perfect.
eclipse+pydev ?
I've never tried it though
--
http://mail.python.org/mailman/listinfo/python-list
I did a review of Python IDE's at my blog. If you're interested you can take a look:http://www.straw-dogs.co.uk/blog/python-ide-reviewI have a couple of links to other reviews on there too. Worth a look if you're trying to find a good IDE.
On 2/20/06, Tim Parkin <[EMAIL PROTECTED]> wrote:
Mladen
Mladen Adamovic wrote:
>Hi!
>
>I wonder which editor or IDE you can recommend me for writing Python
>programs. I tried with jEdit but it isn't perfect.
>
>
>
I've been using wing for quite some time and it's an excellent dedicated
editor for python. If you want flexible debugging in a gui envir
I'm writing a simple yet powerful text editor for GNOME that is great
for Python development called Scribes. It features
Snippets (ala Textmate/Eclipse)
Automatic word completion
Automatic indentation
Automatic bracket completion
Automatic saving
Bookmarks
Syntax Highlight
etc..
Flash Movie: http
Rene Pijlman wrote:
> Sriram Krishnan:
>
>>Check out http://wiki.python.org/moin/PythonEditors.
>
>
> This page can't be taken seriously. vi is not listed.
Well, this prove that this page *is* to be taken seriously !-)
(René, don't bother replying : this is a troll ;-)
--
bruno desthuilli
Rene Pijlman wrote:
> F. Petitjean:
>
>>Rene Pijlman:
>>
>>>vi
>>
>>I beg to disagree :-) Use ed
>>"Ed is the standard text editor."
>>http://www.gnu.org/fun/jokes/ed.msg.html
>
>
> That was 1991. This is 2006.
Yes, but that rant is still a pure jewel of geek madness.
--
bruno desthuilliers
I really think that IDLE is one of the best around in Python source editing.
The only great lacks are tabs. Does somebody know if is there some IDLE
modified version including tabbed browsing, out there?
--
http://mail.python.org/mailman/listinfo/python-list
Endless stories about IDEs (try to browse through this discussion group
first). Of course it depends about users personal needs and taste. So
install them and try them (I know, it's really time consuming). I thing
there is not the other way to decide which one is the best for YOU.
Petr Jakes
--
gedit
--
http://mail.python.org/mailman/listinfo/python-list
Mladen Adamovic wrote:
> Hi!
>
> I wonder which editor or IDE you can recommend me for writing Python
> programs. I tried with jEdit but it isn't perfect.
My personal favorite is Kate (comes with KDE).
- Duck
--
http://mail.python.org/mailman/listinfo/python-list
Mladen Adamovic enlightened us with:
> I wonder which editor or IDE you can recommend me for writing Python
> programs. I tried with jEdit but it isn't perfect.
I use gvim (if I have X) and vim (if I don't). The only negative thing
about it, is its learning curve ;-)
Sybren
--
The problem with
Rene Pijlman wrote:
> Sriram Krishnan:
>
>>Check out http://wiki.python.org/moin/PythonEditors.
>
>
> This page can't be taken seriously. vi is not listed.
I hope your key is broken; I wouldn't wish old-school vi on my
worst enemy. Fortunately that page lists the wonderful Vim instead, so
s
Rene Pijlman wrote:
> Mladen Adamovic:
>
>>I wonder which editor or IDE you can recommend me for writing Python
>>programs.
>
>
> vi
>
Scite is a good editor. It is available for both Windows and Linux.
Boa-Constructor is an IDE rather than an editor. Although it focuses
on wxPython, it has
Sriram Krishnan:
>Check out http://wiki.python.org/moin/PythonEditors.
This page can't be taken seriously. vi is not listed.
--
René Pijlman
--
http://mail.python.org/mailman/listinfo/python-list
F. Petitjean:
>Rene Pijlman:
>> vi
>
>I beg to disagree :-) Use ed
>"Ed is the standard text editor."
>http://www.gnu.org/fun/jokes/ed.msg.html
That was 1991. This is 2006.
--
René Pijlman
--
http://mail.python.org/mailman/listinfo/python-list
SPE: http://pythonide.stani.be
I use it on Ubuntu. For a quick start, view:
http://showmedo.com/videoListPage?listKey=PythonDevelopmentWithSPE
Stani
--
http://mail.python.org/mailman/listinfo/python-list
Le Sun, 19 Feb 2006 21:33:59 +0100, Rene Pijlman a écrit :
> Mladen Adamovic:
>>I wonder which editor or IDE you can recommend me for writing Python
>>programs.
>
> vi
I beg to disagree :-) Use ed
"Ed is the standard text editor."
http://www.gnu.org/fun/jokes/ed.msg.html
--
http://mail.python.
Mladen Adamovic wrote:
> Hi!
>
> I wonder which editor or IDE you can recommend me for writing Python
> programs. I tried with jEdit but it isn't perfect.
>
Nothing is perfect ... but try SciTE and Eric
http://www.die-offenbachs.de/detlev/eric3.html
--Armin
http://www.steinhoff-automation.com
Mladen Adamovic wrote:
> Hi!
>
> I wonder which editor or IDE you can recommend me for writing Python
> programs. I tried with jEdit but it isn't perfect.
>
Check out http://wiki.python.org/moin/PythonEditors. I personally use Emacs
--
Sriram
--
http://mail.python.org/mailman/listinfo/python
# I wonder which editor or IDE you can recommend me for writing Python
# programs. I tried with jEdit but it isn't perfect.
It depends on what you need; what don't you like about JEdit? What do
you think a good editor or IDE should provide?
--
Jonathan Daugherty
http://www.parsed.org
--
ht
Mladen Adamovic:
>I wonder which editor or IDE you can recommend me for writing Python
>programs.
vi
--
René Pijlman
--
http://mail.python.org/mailman/listinfo/python-list
John Abel enlightened us with:
> Here's one I used a while back. Returns a dict containing details per
> partition
This only gives information about actually mounted partitions. It
could be improved by checking /proc/partitions as well.
Sybren
--
The problem with the world is stupidity. Not sa
Partitioning a hard disk on linux can be done with parted, see
http://www.gnu.org/software/parted/parted.html - I don't know how good
the python-pated interface is, and what it's capable of
--
http://mail.python.org/mailman/listinfo/python-list
Here's one I used a while back. Returns a dict containing details per
partition
def _getAvailPartitions():
validTypes = [ 'ufs', 'nfs', 'reiserfs' ]
mntTab = file( '/etc/mtab', 'r' )
drvDetails = {}
for mntLine in mntTab:
splitLine = mntLine.split()
> Hi i wanted to know how can i find disk size on linux platform using
> python.
You could use python to drive the 'sfdisk' command through a pipe, which
will probably do much of what you want.
-- Lars
--
Lars Kellogg-Stedman <[EMAIL PROTECTED]>
This email address will expire on 2005-11-23.
--
Hi i wanted to know how can i find disk size on linux platform using
python. Also any info on how i can partition the hard disk, etc will be
welcome thank you.
--
http://mail.python.org/mailman/listinfo/python-list
That's exactly the way to go. In my case, I'm using cx_Oracle to
connect from Python to Oracle and the same exact code runs on Windows,
Linux, Solaris and soon on AIX.
Grig
--
http://mail.python.org/mailman/listinfo/python-list
I know... I'm expecting pain, and when that pain doesn't arrive I
assume that I did something wrong.
Actually, I was using the odbc/dbi stuff that ships with the win32
distribution for my windows work, and using MySQLdb for my linux work.
Most of the code is the same. But I suppose the big benefi
1 - 100 of 116 matches
Mail list logo