User Paul D. Eden - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T04:10:25Zhttp://stackoverflow.com/feeds/user/3045http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/357785/what-is-the-recommended-way-to-use-vim-folding-for-python-coding2What is the recommended way to use vim folding for python codingPaul D. Eden2008-12-10T22:10:45Z2009-12-08T18:32:36Z
<p>I am interested in enabling code folding in vim for python coding.</p>
<p>I have noticed multiple ways to do so.</p>
<p>Does anyone have a preferred way to do python code folding in vim?<br />
I.e, </p>
<ul>
<li>do you have a particular vim plugin that you use and like?</li>
<li>do you use manual folding or do you place markers in comments?</li>
<li>any other recommended ways to do code folding for python in vim?</li>
</ul>
http://stackoverflow.com/questions/356126/how-can-you-automatically-remove-trailing-whitespace-in-vim17How can you automatically remove trailing whitespace in vimPaul D. Eden2008-12-10T14:02:31Z2009-10-24T16:10:50Z
<p>I am getting 'trailing whitespace' errors trying to commit some files in git.</p>
<p>I want to remove these trailing whitespace characters automatically right before I save python files.</p>
<p>Can you configure vim to do this? If so, how?</p>
http://stackoverflow.com/questions/328061/how-to-make-a-surface-with-a-transparent-background-in-pygame3How to make a surface with a transparent background in pygamePaul D. Eden2008-11-29T21:58:40Z2009-08-11T19:46:04Z
<p>Can someone give me some example code that creates a surface with a transparent background in pygame?</p>
http://stackoverflow.com/questions/354097/how-to-configure-vim-to-not-put-comments-at-the-beginning-of-lines-while-editing8How to configure vim to not put comments at the beginning of lines while editing python filesPaul D. Eden2008-12-09T20:21:40Z2009-07-18T02:24:37Z
<p>When I add a # in insert mode on an empty line in Vim while editing python files, vim moves the # to the beginning of the line, but I would like the # to be inserted at the tab level where I entered it.</p>
<p>For example, when writing this in vim</p>
<pre><code>for i in range(10):
#
</code></pre>
<p>the # does not stay there where I entered it.</p>
<p>It is moved like so, by vim.</p>
<pre><code>for i in range(10):
#
</code></pre>
<p>Does anyone know of a configuration item in vim that would change this?</p>
<p>If it helps, I am using Ubuntu 8.10.</p>
http://stackoverflow.com/questions/728589/example-of-how-to-use-msilib-to-create-a-msi-file-from-a-python-module0Example of how to use msilib to create a .msi file from a python modulePaul D. Eden2009-04-08T05:09:12Z2009-04-08T06:12:10Z
<p>Can anyone give me an example of how to use python's <a href="http://docs.python.org/library/msilib.html" rel="nofollow">msilib</a> standard library module to create a msi file from a custom python module?</p>
<p>For example, let's say I have a custom module called cool.py with the following code</p>
<pre><code>class Cool(object):
def print_cool(self):
print "cool"
</code></pre>
<p>and I want to create an msi file using msilib that will install cool.py in python's site-packages directory.</p>
<p>How can I do that?</p>
http://stackoverflow.com/questions/602599/how-to-show-the-output-of-l-in-python-pdb-after-every-command-entered3How to show the output of 'l' in python pdb after every command enteredPaul D. Eden2009-03-02T14:51:11Z2009-03-02T15:29:38Z
<p>I would like to have the output of the python pdb 'l' command printed to the screen after every command I enter in an interactive debugging session.</p>
<p>Is there a way to setup python pdb to do this?</p>
http://stackoverflow.com/questions/466323/how-to-append-to-a-text-field-in-t-sql-sql-server-20051How to append to a text field in t-sql SQL Server 2005Paul D. Eden2009-01-21T17:53:45Z2009-01-21T18:42:44Z
<p>What is the best way to append to a text field using t-sql in Sql Server 2005?</p>
<p>With a varchar I would do this.</p>
<pre><code>update tablename set fieldname = fieldname + 'appended string'
</code></pre>
<p>But this doesn't work with a text field.</p>
http://stackoverflow.com/questions/278398/going-backwards-in-a-bash-prompt/278414#2784143Answer by Paul D. Eden for Going backwards in a bash promptPaul D. Eden2008-11-10T16:42:11Z2008-12-27T15:58:15Z<p>To my knowledge this is not possible unless you delve into more low-level stuff like full-screen emulators like curses.</p>
http://stackoverflow.com/questions/392001/sql-string-formatter4SQL string formatterPaul D. Eden2008-12-24T18:35:11Z2008-12-24T18:45:26Z
<p>Does anyone know of a program, a utility, or some programmatic library, preferably for Linux, that takes an unformatted SQL string and pretty prints it?</p>
<p>For example I would like the following</p>
<pre><code>select * from users where name = 'Paul'
</code></pre>
<p>be changed to something like this</p>
<pre><code>select *
from users
where
name = 'Paul'
</code></pre>
<p>The exact formatting is not important.
I just need something to take a large SQL string and break it up into something more readable.</p>
http://stackoverflow.com/questions/392001/sql-string-formatter/392017#3920170Answer by Paul D. Eden for SQL string formatterPaul D. Eden2008-12-24T18:44:20Z2008-12-24T18:44:20Z<p>There is this as well.</p>
<p><a href="http://www.wangz.net/cgi-bin/pp/gsqlparser/sqlpp/sqlformat.tpl" rel="nofollow">http://www.wangz.net/cgi-bin/pp/gsqlparser/sqlpp/sqlformat.tpl</a></p>
http://stackoverflow.com/questions/392001/sql-string-formatter/392014#3920140Answer by Paul D. Eden for SQL string formatterPaul D. Eden2008-12-24T18:43:40Z2008-12-24T18:43:40Z<p>This one looks good.</p>
<p><a href="http://www.sqlinform.com/" rel="nofollow">http://www.sqlinform.com/</a></p>
http://stackoverflow.com/questions/354097/how-to-configure-vim-to-not-put-comments-at-the-beginning-of-lines-while-editing/354422#3544226Answer by Paul D. Eden for How to configure vim to not put comments at the beginning of lines while editing python filesPaul D. Eden2008-12-09T22:07:18Z2008-12-22T02:08:55Z<p>I found an answer here <a href="http://vim.wikia.com/wiki/Restoring_indent_after_typing_hash" rel="nofollow">http://vim.wikia.com/wiki/Restoring_indent_after_typing_hash</a></p>
<p>It seems that the vim smartindent option is the cause of the problem.
The referenced page above describes work-a-rounds but after reading the help in smartindent in vim itself (:help smartindent), I decided to try cindent instead of smartindent.</p>
<p>I replaced </p>
<pre><code>set smartindent
</code></pre>
<p>with </p>
<pre><code>set cindent
</code></pre>
<p>in my .vimrc file</p>
<p>and so far it is working perfectly.</p>
<p>This changed also fixed the behavior of '<<' and '>>' for indenting visual blocks that include python comments.</p>
<p>There are more configuration options for and information on indentation in the vim help for smartindent and cindent (:help smartindent and :help cindent).</p>
http://stackoverflow.com/questions/376111/how-do-you-override-vim-options-via-comments-in-a-python-source-code-file5How do you override vim options via comments in a python source code file?Paul D. Eden2008-12-17T21:37:46Z2008-12-17T22:13:05Z
<p>I would like to set some vim options in one file in the comments section.</p>
<p>For example, I would like to set this option in one file</p>
<pre><code>set syntax=python
</code></pre>
<p>The file does not have a .py extension and I am not interested in making my vim installation recognise all files with this extension as python files.</p>
<p>I know this can be done because I have seen it, but my googling for this has not yet been fruitful.</p>
http://stackoverflow.com/questions/357824/how-to-automatically-align-python-variable-assignment-lines-in-vim3How to automatically align python variable assignment lines in vim Paul D. Eden2008-12-10T22:25:39Z2008-12-12T04:26:39Z
<p>I would like to automatically align lines of python variable assignments in vim.</p>
<p>For example I would like to change this:</p>
<pre><code>a = 1
banana = 2
</code></pre>
<p>into this</p>
<pre><code>a = 1
banana = 2
</code></pre>
<p>automatically in vim.</p>
<p>Is there a way to do this?</p>
http://stackoverflow.com/questions/356126/how-can-you-automatically-remove-trailing-whitespace-in-vim/356130#35613019Answer by Paul D. Eden for How can you automatically remove trailing whitespace in vimPaul D. Eden2008-12-10T14:03:53Z2008-12-10T14:03:53Z<p>I found the answer here (<a href="http://vim.wikia.com/wiki/Remove_unwanted_spaces#Automatically_removing_all_trailing_whitespace" rel="nofollow">http://vim.wikia.com/wiki/Remove_unwanted_spaces#Automatically_removing_all_trailing_whitespace</a>).</p>
<p>Adding the following to my .vimrc file did the trick.</p>
<pre><code>autocmd BufWritePre *.py :%s/\s\+$//e
</code></pre>
http://stackoverflow.com/questions/339007/python-nicest-way-to-pad-zeroes-to-string/339024#3390244Answer by Paul D. Eden for Python: Nicest way to pad zeroes to stringPaul D. Eden2008-12-03T22:47:13Z2008-12-03T22:47:13Z<p>Just use the <a href="http://www.python.org/doc/2.5.2/lib/string-methods.html" rel="nofollow">rjust</a> method of the string object.</p>
<p>This example will make a string of 10 characters long, padding as necessary.</p>
<pre><code>>>> t = 'test'
>>> t.rjust(10, '0')
>>> '000000test'
</code></pre>
http://stackoverflow.com/questions/328107/how-can-you-determine-a-point-is-between-two-other-points-on-a-line-segment11How can you determine a point is between two other points on a line segment?Paul D. Eden2008-11-29T22:37:13Z2008-12-01T23:42:35Z
<p>Let's say you have a two dimensional plane with 2 points (called a and b) on it represented by an x integer and a y integer for each point.</p>
<p>How can you determine if another point c is on the line segment defined by a and b?</p>
<p>I use python most, but examples in any language would be helpful.</p>
http://stackoverflow.com/questions/327896/how-to-draw-lines-on-a-picture-background-in-pygame1how to draw lines on a picture background in pygamePaul D. Eden2008-11-29T19:31:42Z2008-11-29T20:59:44Z
<p>I would like to draw lines (of arbitrary position and length) onto a surface in pygame, which itself is an image loaded from a file on disk.</p>
<p>Can anyone point me to some example code that does this?</p>
http://stackoverflow.com/questions/267660/how-to-create-a-picture-with-animated-aspects-programmatically1How to create a picture with animated aspects programmaticallyPaul D. Eden2008-11-06T04:44:47Z2008-11-06T09:08:49Z
<p>Background</p>
<p>I have been asked by a client to create a picture of the world which has animated arrows/rays that come from one part of the world to another. </p>
<p>The rays will be randomized, will represent a transaction, will fade out after they happen and will increase in frequency as time goes on. The rays will start in one country's boundary and end in another's. As each animated transaction happens a continuously updating sum of the amounts of all the transactions will be shown at the bottom of the image. The amounts of the individual transactions will be randomized. There will also be a year showing on the image that will increment every n seconds.</p>
<p>The randomization, summation and incrementing are not a problem for me, but I am at a loss as to how to approach the animation of the arrows/rays.</p>
<p><strong>My question is what is the best way to do this? What frameworks/libraries are best suited for this job?</strong></p>
<p>I am most fluent in python so python suggestions are most easy for me, but I am open to any elegant way to do this.
The client will present this as a slide in a presentation in a windows machine.</p>
http://stackoverflow.com/questions/207904/is-there-a-free-python-debugger-that-has-watchpoints/231022#2310221Answer by Paul D. Eden for Is there a free python debugger that has watchpoints?Paul D. Eden2008-10-23T19:06:19Z2008-10-23T19:06:19Z<p>This reimplementation of the built-in pdb.py has watchpoints.</p>
<p><a href="http://morepypy.blogspot.com/2008/06/pdb-and-rlcompleterng.html" rel="nofollow">http://morepypy.blogspot.com/2008/06/pdb-and-rlcompleterng.html</a></p>
<p>I tried it but, in cursory tries was not able to get it to work.</p>
http://stackoverflow.com/questions/90032/reasons-not-to-use-django/230987#2309870Answer by Paul D. Eden for Reasons not to use djangoPaul D. Eden2008-10-23T18:58:58Z2008-10-23T18:58:58Z<p>I love Django. I think it is great for big projects, but for small ones the learning curve can be prohibitive compared to other python frameworks.</p>
<p>But once the learning curve is over, django becomes a nice option even for smaller projects.</p>
<p>I have my personal reasons for going with different python web frameworks listed <a href="http://pauldeden.blogspot.com/2008/10/python-web-frameworks-and-when-i-use.html" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/229762/what-single-software-development-tool-do-you-think-holds-the-most-value/229801#2298010Answer by Paul D. Eden for What single software development tool do you think holds the most value?Paul D. Eden2008-10-23T13:55:59Z2008-10-23T15:00:31Z<p>VIM, definitely. </p>
<p>With freely available, or custom-written plugins it get's all the features of the big IDEs with none of the slowness and bloat.<br />
And it is cross-platform and can be used to develop with any language.</p>
<p>Features</p>
<p>Refactoring:
Bicycle Repair Man (bike.vim), Rope (rope.vim)</p>
<p>Autocompletion:
Omnicomplete, Supertab.vim</p>
<p>Anything Else:
Python bindings</p>
http://stackoverflow.com/questions/229762/what-single-software-development-tool-do-you-think-holds-the-most-value/229818#2298183Answer by Paul D. Eden for What single software development tool do you think holds the most value?Paul D. Eden2008-10-23T13:59:15Z2008-10-23T13:59:15Z<p>GIT.</p>
<p>Git adds all the features I need and can interact easily with svn (git-svn).</p>
http://stackoverflow.com/questions/191644/how-do-you-get-output-parameters-from-a-stored-procedure-in-python/220150#2201500Answer by Paul D. Eden for How do you get output parameters from a stored procedure in Python?Paul D. Eden2008-10-20T22:22:29Z2008-10-20T22:22:29Z<p>If you cannot or don't want to modify the original procedure and have access to the database you can write a simple wrapper procedure that is callable from python.</p>
<p>For example, if you have a stored procedure like:</p>
<pre><code>CREATE PROC GetNextNumber
@NextNumber int OUTPUT
AS
...
</code></pre>
<p>You could write a wrapper like so which is easily callable from python:</p>
<pre><code>CREATE PROC GetNextNumberWrap
AS
DECLARE @RNextNumber int
EXEC GetNextNumber @RNextNumber
SELECT @RNextNumber
GO
</code></pre>
<p>Then you could call it from python like so:</p>
<pre><code>import pymssql
con = pymssql.connect(...)
cur = con.cursor()
cur.execute("EXEC GetNextNumberWrap")
next_num = cur.fetchone()[0]
</code></pre>
http://stackoverflow.com/questions/191644/how-do-you-get-output-parameters-from-a-stored-procedure-in-python/220033#2200331Answer by Paul D. Eden for How do you get output parameters from a stored procedure in Python?Paul D. Eden2008-10-20T21:32:53Z2008-10-20T21:32:53Z<p>It looks like every python dbapi library implemented on top of freetds (pymssql, pyodbc, etc) will not be able to access output parameters when connecting to Microsoft SQL Server 7 SP3 and higher.</p>
<p><a href="http://www.freetds.org/faq.html#ms.output.parameters" rel="nofollow">http://www.freetds.org/faq.html#ms.output.parameters</a></p>
http://stackoverflow.com/questions/207981/how-to-enable-mysql-client-auto-re-connect-with-mysqldb/210112#2101122Answer by Paul D. Eden for How to enable MySQL client auto re-connect with MySQLdb?Paul D. Eden2008-10-16T20:15:17Z2008-10-16T20:15:17Z<p>You other bet it to work around dropped connections yourself with code.</p>
<p>One way to do it would be the following:</p>
<pre><code>import MySQLdb
class DB:
conn = None
def connect(self):
self.conn = MySQLdb.connect()
def cursor(self):
try:
return self.conn.cursor()
except (AttributeError, MySQLdb.OperationalError):
self.connect()
return self.conn.cursor()
db = DB()
cur = db.cursor()
# wait a long time for the Mysql connection to timeout
cur = db.cursor()
# still works
</code></pre>
http://stackoverflow.com/questions/207981/how-to-enable-mysql-client-auto-re-connect-with-mysqldb/210096#2100961Answer by Paul D. Eden for How to enable MySQL client auto re-connect with MySQLdb?Paul D. Eden2008-10-16T20:11:18Z2008-10-16T20:11:18Z<p>If you are using ubuntu Linux there was a patch added to the python-mysql package that added the ability to set that same MYSQL_OPT_RECONNECT option (see <a href="https://launchpad.net/ubuntu/hardy/+source/python-mysqldb/1.2.2-5" rel="nofollow">here</a>). I have not tried it though.</p>
<p>Unfortunately, the patch was later removed due to a conflict with autoconnect and transations (described <a href="https://launchpad.net/ubuntu/+source/python-mysqldb" rel="nofollow">here</a>).</p>
<p>The comments from that page say:
1.2.2-7 Published in intrepid-release on 2008-06-19 </p>
<p>python-mysqldb (1.2.2-7) unstable; urgency=low</p>
<p>[ Sandro Tosi ]
* debian/control
- list items lines in description starts with 2 space, to avoid reformat
on webpages (Closes: #480341)</p>
<p>[ Bernd Zeimetz ]
* debian/patches/02_reconnect.dpatch:
- Dropping patch:
Comment in Storm which explains the problem:</p>
<pre><code> # Here is another sad story about bad transactional behavior. MySQL
# offers a feature to automatically reconnect dropped connections.
# What sounds like a dream, is actually a nightmare for anyone who
# is dealing with transactions. When a reconnection happens, the
# currently running transaction is transparently rolled back, and
# everything that was being done is lost, without notice. Not only
# that, but the connection may be put back in AUTOCOMMIT mode, even
# when that's not the default MySQLdb behavior. The MySQL developers
# quickly understood that this is a terrible idea, and removed the
# behavior in MySQL 5.0.3. Unfortunately, Debian and Ubuntu still
# have a patch right now which *reenables* that behavior by default
# even past version 5.0.3.
</code></pre>
http://stackoverflow.com/questions/187621/how-to-make-a-python-command-line-program-autocomplete-arbitrary-things-not-inte12How to make a python, command-line program autocomplete arbitrary things NOT interpreterPaul D. Eden2008-10-09T14:55:02Z2008-10-16T19:28:22Z
<p>I am aware of how to setup autocompletion of python objects in the python interpreter (on unix). </p>
<ul>
<li>Google shows many hits for explanations on how to do this.</li>
<li>Unfortunately, there are so many references to that it is difficult to find what I need to do, which is slightly different.</li>
</ul>
<p>I need to know how to enable, tab/auto completion of arbitrary items in a command-line program written in python.</p>
<p>My specific use case is a command-line python program that needs to send emails. I want to be able to autocomplete email addresses (I have the addresses on disk) when the user types part of it (and optionally presses the TAB key).</p>
<p>I do not need it to work on windows or mac, just linux.</p>
http://stackoverflow.com/questions/187621/how-to-make-a-python-command-line-program-autocomplete-arbitrary-things-not-inte/209921#2099210Answer by Paul D. Eden for How to make a python, command-line program autocomplete arbitrary things NOT interpreterPaul D. Eden2008-10-16T19:28:22Z2008-10-16T19:28:22Z<p>See <a href="http://stackoverflow.com/questions/209484/howto-do-python-command-line-autocompletion-but-not-only-at-the-beginning-of-a#209503">here</a> for a version that matches any part of the string, not just the beginning, and is case insensitive.</p>
http://stackoverflow.com/questions/187621/how-to-make-a-python-command-line-program-autocomplete-arbitrary-things-not-inte/209915#2099150Answer by Paul D. Eden for How to make a python, command-line program autocomplete arbitrary things NOT interpreterPaul D. Eden2008-10-16T19:26:31Z2008-10-16T19:26:31Z<p>Here is a full-working version of the code that was very supplied by ephemient <a href="http://stackoverflow.com/questions/187621/how-to-make-a-python-command-line-program-autocomplete-arbitrary-things-not-int#187660">here</a> (thank you).</p>
<pre><code>import readline
addrs = ['angela@domain.com', 'michael@domain.com', 'david@test.com']
def completer(text, state):
options = [x for x in addrs if x.startswith(text)]
try:
return options[state]
except IndexError:
return None
readline.set_completer(completer)
readline.parse_and_bind("tab: complete")
while 1:
a = raw_input("> ")
print "You entered", a
</code></pre>
http://stackoverflow.com/questions/602599/how-to-show-the-output-of-l-in-python-pdb-after-every-command-entered/602733#602733Comment by Paul D. Eden on How to show the output of 'l' in python pdb after every command enteredPaul D. Eden2009-03-02T16:12:20Z2009-03-02T16:12:20Zgreat tip thanks!!http://stackoverflow.com/questions/466323/how-to-append-to-a-text-field-in-t-sql-sql-server-2005/466353#466353Comment by Paul D. Eden on How to append to a text field in t-sql SQL Server 2005Paul D. Eden2009-01-21T18:16:21Z2009-01-21T18:16:21ZThanks Bravax, this was perfect!http://stackoverflow.com/questions/466323/how-to-append-to-a-text-field-in-t-sql-sql-server-2005/466342#466342Comment by Paul D. Eden on How to append to a text field in t-sql SQL Server 2005Paul D. Eden2009-01-21T18:05:50Z2009-01-21T18:05:50ZI wish there was an easier way, but thanks for the link.http://stackoverflow.com/questions/466323/how-to-append-to-a-text-field-in-t-sql-sql-server-2005Comment by Paul D. Eden on How to append to a text field in t-sql SQL Server 2005Paul D. Eden2009-01-21T18:03:13Z2009-01-21T18:03:13ZUnfortunately, that didn't work. I got 'The data types text and nvarchar are incompatible in the add operator.' Thanks though.http://stackoverflow.com/questions/357785/what-is-the-recommended-way-to-use-vim-folding-for-python-codingComment by Paul D. Eden on What is the recommended way to use vim folding for python codingPaul D. Eden2008-12-16T15:37:32Z2008-12-16T15:37:32ZHi hop, I was hoping to get recommendations from the stackoverflow.com users. Thanks.http://stackoverflow.com/questions/357785/what-is-the-recommended-way-to-use-vim-folding-for-python-coding/357833#357833Comment by Paul D. Eden on What is the recommended way to use vim folding for python codingPaul D. Eden2008-12-10T23:04:08Z2008-12-10T23:04:08ZUnfortunately, this plugin uses more processor time than I would prefer (even with the a version) as I like to keep my vim speedy. Any other suggestions?http://stackoverflow.com/questions/357824/how-to-automatically-align-python-variable-assignment-lines-in-vimComment by Paul D. Eden on How to automatically align python variable assignment lines in vim Paul D. Eden2008-12-10T22:41:12Z2008-12-10T22:41:12Zsaua, noted thanks!
S.Lott, it's mostly because it is easier for me to read.http://stackoverflow.com/questions/354097/how-to-configure-vim-to-not-put-comments-at-the-beginning-of-lines-while-editing/354271#354271Comment by Paul D. Eden on How to configure vim to not put comments at the beginning of lines while editing python filesPaul D. Eden2008-12-09T21:50:06Z2008-12-09T21:50:06ZUnfortunately, that did not work in my case, the problem persists while using it.
I used version 2.6.3 because I have not yet upgraded to python 3.0.
Perhaps the problem is in the /usr/share/vim/vim71/indent/python.vim file installed from the Ubuntu vim-runtime package?http://stackoverflow.com/questions/213798/would-python-make-a-good-substitute-for-the-windows-command-line-batch-scripts/214412#214412Comment by Paul D. Eden on Would python make a good substitute for the windows command line/batch scripts?Paul D. Eden2008-12-08T21:14:51Z2008-12-08T21:14:51ZI would have to agree with S. Lott on this.
It is not much extra work and the explicitness keeps the global namespace from being cluttered.
http://stackoverflow.com/questions/328107/how-can-you-determine-a-point-is-between-two-other-points-on-a-line-segment/328193#328193Comment by Paul D. Eden on How can you determine a point is between two other points on a line segment?Paul D. Eden2008-11-29T23:58:01Z2008-11-29T23:58:01ZThis is an elegant solution.http://stackoverflow.com/questions/209484/howto-do-python-command-line-autocompletion-but-not-only-at-the-beginning-of-a-st/209503#209503Comment by Paul D. Eden on Howto do python command-line autocompletion but NOT only at the beginning of a stringPaul D. Eden2008-10-16T18:40:30Z2008-10-16T18:40:30ZThe 2nd option is excellent for my needs, Thank You.http://stackoverflow.com/questions/209484/howto-do-python-command-line-autocompletion-but-not-only-at-the-beginning-of-a-st/209503#209503Comment by Paul D. Eden on Howto do python command-line autocompletion but NOT only at the beginning of a stringPaul D. Eden2008-10-16T17:55:01Z2008-10-16T17:55:01ZNovel idea. Is there a way to do automatically (i.e., without pressing control-r first)?http://stackoverflow.com/questions/209484/howto-do-python-command-line-autocompletion-but-not-only-at-the-beginning-of-a-st/209503#209503Comment by Paul D. Eden on Howto do python command-line autocompletion but NOT only at the beginning of a stringPaul D. Eden2008-10-16T17:29:21Z2008-10-16T17:29:21ZYes, I would like to be able to search in the middle or end of strings and not just in the beginning.http://stackoverflow.com/questions/207904/is-there-a-free-python-debugger-that-has-watchpoints/207968#207968Comment by Paul D. Eden on Is there a free python debugger that has watchpoints?Paul D. Eden2008-10-16T16:54:30Z2008-10-16T16:54:30ZIt looks like watchpoints are not yet implemented in pydev.
<a href="http://www.mail-archive.com/pydev-users@lists.sourceforge.net/msg02350.html" rel="nofollow">mail-archive.com/pydev-users@lists.sourceforge.net/…</a>