<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Python, Mac OS X, and Readline.</title>
	<atom:link href="http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/</link>
	<description>...so google can organize my head.</description>
	<pubDate>Mon, 08 Sep 2008 00:46:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: JamieC</title>
		<link>http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-146325</link>
		<dc:creator>JamieC</dc:creator>
		<pubDate>Wed, 29 Aug 2007 13:10:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-146325</guid>
		<description>Thankyou, following the readme worked like a charm on my macbook pro with Python 2.4.3.</description>
		<content:encoded><![CDATA[<p>Thankyou, following the readme worked like a charm on my macbook pro with Python 2.4.3.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Infotainment Telesector / Archive / Alas and Alack</title>
		<link>http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-133879</link>
		<dc:creator>The Infotainment Telesector / Archive / Alas and Alack</dc:creator>
		<pubDate>Sun, 01 Jul 2007 18:25:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-133879</guid>
		<description>[...] Bumgarner on fixing readline support in Mac Python. I&#8217;ve never run into this as I use the fine packages over at pythonmac.org; a lot of my code [...]</description>
		<content:encoded><![CDATA[<p>[...] Bumgarner on fixing readline support in Mac Python. I&#8217;ve never run into this as I use the fine packages over at pythonmac.org; a lot of my code [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicko</title>
		<link>http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-5563</link>
		<dc:creator>Nicko</dc:creator>
		<pubDate>Wed, 31 May 2006 17:17:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-5563</guid>
		<description>Thank you for that. I just got a Intel iMac and realised that I was going to have to finally update my &lt;a href="http://www.nicko.org/Cocoa/" rel="nofollow"&gt;Python readline implementation&lt;/a&gt; from way-back.  Now I don't need to!  Thank you BBum!</description>
		<content:encoded><![CDATA[<p>Thank you for that. I just got a Intel iMac and realised that I was going to have to finally update my <a href="http://www.nicko.org/Cocoa/" >Python readline implementation</a> from way-back.  Now I don&#8217;t need to!  Thank you BBum!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tyler</title>
		<link>http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-2520</link>
		<dc:creator>tyler</dc:creator>
		<pubDate>Fri, 28 Apr 2006 06:14:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-2520</guid>
		<description>Thanks for this tip on getting history for the command line python.  not having this was driving me bonkers!</description>
		<content:encoded><![CDATA[<p>Thanks for this tip on getting history for the command line python.  not having this was driving me bonkers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bbum&#8217;s weblog-o-mat &#187; Blog Archive &#187; AppleScript for the rest of us</title>
		<link>http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-1584</link>
		<dc:creator>bbum&#8217;s weblog-o-mat &#187; Blog Archive &#187; AppleScript for the rest of us</dc:creator>
		<pubDate>Fri, 24 Mar 2006 06:31:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-1584</guid>
		<description>[...] Furthermore, I can use appscript from within the command line interpreter (read this first to make sure the command line python interpreter is actually useful). [...]</description>
		<content:encoded><![CDATA[<p>[...] Furthermore, I can use appscript from within the command line interpreter (read this first to make sure the command line python interpreter is actually useful). [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Veerasingam</title>
		<link>http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-996</link>
		<dc:creator>Paul Veerasingam</dc:creator>
		<pubDate>Tue, 07 Mar 2006 18:41:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-996</guid>
		<description>Thanks for introducing me to doctest! Finally, an easy way to write simple unit tests without resorting to the unittest module.

You're right, IPython's output doesn't look like the output from a standard Python interpreter, so it is incompatible with doctest docstrings. But it's so convenient for getting the lowdown on modules/classes etc.

Instead of 'dir(objname)', you can just type 'objname.' and you get a list of methods. To find out how to use a method, all you have to do is type 'objname.method?' and the object dictionary, method signature, and docstring pops out. The exception messages in IPython are also more descriptive than in the standard Python interpreter.

But you're right. The Python interpreter comes standard with every Python installation and it's easy to use. Guido himself prefers the standard interpreter to IPython. 
http://video.google.com/videosearch?q=guido+van+rossum</description>
		<content:encoded><![CDATA[<p>Thanks for introducing me to doctest! Finally, an easy way to write simple unit tests without resorting to the unittest module.</p>
<p>You&#8217;re right, IPython&#8217;s output doesn&#8217;t look like the output from a standard Python interpreter, so it is incompatible with doctest docstrings. But it&#8217;s so convenient for getting the lowdown on modules/classes etc.</p>
<p>Instead of &#8216;dir(objname)&#8217;, you can just type &#8216;objname.&#8217; and you get a list of methods. To find out how to use a method, all you have to do is type &#8216;objname.method?&#8217; and the object dictionary, method signature, and docstring pops out. The exception messages in IPython are also more descriptive than in the standard Python interpreter.</p>
<p>But you&#8217;re right. The Python interpreter comes standard with every Python installation and it&#8217;s easy to use. Guido himself prefers the standard interpreter to IPython.<br />
<a href="http://video.google.com/videosearch?q=guido+van+rossum" >http://video.google.com/videosearch?q=guido+van+rossum</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-994</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Tue, 07 Mar 2006 18:12:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-994</guid>
		<description>What about &lt;a href="http://www.opensource.apple.com/darwinsource/Current/libedit-5.1/libedit/" rel="nofollow"&gt;libedit&lt;/a&gt;, the NetBSD readline replacement that ships with Darwin?  Can Python be built to use it?</description>
		<content:encoded><![CDATA[<p>What about <a href="http://www.opensource.apple.com/darwinsource/Current/libedit-5.1/libedit/" >libedit</a>, the NetBSD readline replacement that ships with Darwin?  Can Python be built to use it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Donovan Preston</title>
		<link>http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-993</link>
		<dc:creator>Donovan Preston</dc:creator>
		<pubDate>Tue, 07 Mar 2006 17:51:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-993</guid>
		<description>easy_install readline
easy_install ipython

:-)</description>
		<content:encoded><![CDATA[<p>easy_install readline<br />
easy_install ipython</p>
<p> <img src='http://www.friday.com/bbum/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cameron Hayne</title>
		<link>http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-953</link>
		<dc:creator>Cameron Hayne</dc:creator>
		<pubDate>Tue, 07 Mar 2006 05:42:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-953</guid>
		<description>After the "hugely annoying" in the intro, when you wrote: "Would be easier if I didn’t also want to sue the latest libreadline", I actually thought you were talking about legal action.
Then I realized it was just a typo.</description>
		<content:encoded><![CDATA[<p>After the &#8220;hugely annoying&#8221; in the intro, when you wrote: &#8220;Would be easier if I didn’t also want to sue the latest libreadline&#8221;, I actually thought you were talking about legal action.<br />
Then I realized it was just a typo.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bbum</title>
		<link>http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-952</link>
		<dc:creator>bbum</dc:creator>
		<pubDate>Tue, 07 Mar 2006 05:38:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.friday.com/bbum/2006/03/06/python-mac-os-x-and-readline/#comment-952</guid>
		<description>iPython is pretty amazing, but it is also considerably more complex than and adds a lot of verbosity over the standard python command line.  I seem to end up switching back and forth between the two (when I remember to use ipython).

Unless I'm mistaken, you can't use iPython to generate doctest compatible tests. doctest is just too cool;  go to the interactive prompt, interact with your objects, save the transcript somewhere, remove any garbage, and feed it all through doctest to ensure that the test behaves the same in the future....</description>
		<content:encoded><![CDATA[<p>iPython is pretty amazing, but it is also considerably more complex than and adds a lot of verbosity over the standard python command line.  I seem to end up switching back and forth between the two (when I remember to use ipython).</p>
<p>Unless I&#8217;m mistaken, you can&#8217;t use iPython to generate doctest compatible tests. doctest is just too cool;  go to the interactive prompt, interact with your objects, save the transcript somewhere, remove any garbage, and feed it all through doctest to ensure that the test behaves the same in the future&#8230;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
