<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user">
    <title>gmane.comp.python.ipython.user</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8276"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8275"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8274"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8273"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8272"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8271"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8270"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8269"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8268"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8267"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8266"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8265"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8264"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8263"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8262"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8261"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8260"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8259"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8258"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.ipython.user/8257"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8276">
    <title>Re: Out problem</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8276</link>
    <description>&lt;pre&gt;
This was deliberately changed. If you call a function 10000 times, and
it has some return value that you're not interested in, you don't want
to see 'True' 10000 times. If you do want to see it, you can always
use an explicit print.

As far as I remember, you're the first person to remark on the
difference since it was changed for 0.11, so there probably isn't
enough interest to justify making it configurable. ;-)

Best wishes,
Thomas
&lt;/pre&gt;</description>
    <dc:creator>Thomas Kluyver</dc:creator>
    <dc:date>2012-05-21T20:45:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8275">
    <title>Out problem</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8275</link>
    <description>&lt;pre&gt;I seem to be having a problem with Out not showing up in newer versions 
of ipython under certain conditions. It happens with  0.11+. Easiest to 
just show is as an example:

Python 2.7.3 (default, May  9 2012, 20:18:57)
IPython 0.12.1 -- An enhanced Interactive Python.
?         -&amp;gt; Introduction and overview of IPython's features.
%quickref -&amp;gt; Quick reference.
help      -&amp;gt; Python's own help system.
object?   -&amp;gt; Details about 'object', use 'object??' for extra details.

In [1]: l=[1,2,3]

In [2]: l[0]
Out[2]: 1

In [3]: for i in l:
     i
    ...:

In [4]: Out
Out[4]: {2: 1}


In previous versions iterating through a list would yield an Out:

Python 2.6.5 (r265:79063, Apr 16 2010, 13:09:56)
Type "copyright", "credits" or "license" for more information.

IPython 0.10 -- An enhanced Interactive Python.
?         -&amp;gt; Introduction and overview of IPython's features.
%quickref -&amp;gt; Quick reference.
help      -&amp;gt; Python's own help system.
object?   -&amp;gt; Details about 'object'. ?object also works, ?? prints more.

In [1]:&lt;/pre&gt;</description>
    <dc:creator>Adrian Klaver</dc:creator>
    <dc:date>2012-05-21T20:34:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8274">
    <title>Re: ipython and python3</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8274</link>
    <description>&lt;pre&gt;

As with all Python packages, you would need to install IPython for *both*
Python 2.7 and Python 3.2 (e.g. python3 -m easy_install ipython). IPython
scripts also follow the recommended pattern of having a '3' suffix, so you
would start IPython for Python 3 with `ipython3`.

-MinRK


_______________________________________________
IPython-User mailing list
IPython-User&amp;lt; at &amp;gt;scipy.org
http://mail.scipy.org/mailman/listinfo/ipython-user
&lt;/pre&gt;</description>
    <dc:creator>MinRK</dc:creator>
    <dc:date>2012-05-21T17:35:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8273">
    <title>Re: ipython and python3</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8273</link>
    <description>&lt;pre&gt;Hi Alan,

On 21 May 2012 18:18, Alan &amp;lt;alanwilter&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

First, you need to make sure you have IPython installed for Python 3.
It looks like Fink doesn't yet have a package for IPython on Python 3
[1]. I'm sure they'd appreciate contributions (and feel free to point
the maintainers to this mailing list if they have questions). In the
meantime, you can download it from http://ipython.org/download.html
and install with python3 setup.py install.

Once you've done that, the command should be ipython3. The python3
profile is just a distraction - I initially wrote it to use a
different default profile on Python 3, but we later decided it wasn't
necessary and removed it.

Best wishes,
Thomas

[1] http://pdb.finkproject.org/pdb/browse.php?summary=ipython
&lt;/pre&gt;</description>
    <dc:creator>Thomas Kluyver</dc:creator>
    <dc:date>2012-05-21T17:32:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8272">
    <title>ipython and python3</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8272</link>
    <description>&lt;pre&gt;Hi there,

I am a Fink user on Mac OSX Lion and I have ipython 0.12, python 2.7 and
python 3.2 installed on my system.

I am wondering how can I use ipython with python3. Besides, what is
"ipython --profile=python3" since I still see:

Python 2.7.3 (default, Apr 19 2012, 10:52:47)
Type "copyright", "credits" or "license" for more information.

IPython 0.12.1 -- An enhanced Interactive Python.

?

Thanks,

Alan

&lt;/pre&gt;</description>
    <dc:creator>Alan</dc:creator>
    <dc:date>2012-05-21T17:18:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8271">
    <title>fail to update edited script when using %run withinipython?</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8271</link>
    <description>&lt;pre&gt;Dear all,

I have a problem is that, I use %run script.py to run the script within
ipython (with %pdb on),
then I add one line of print something before the line where exception is
raised.
Then I use ctrl+d to exit debugger and use %run to run the script again, I
found the script in
traceback is updated but the print part is not executed. Then I have to log
out of current ipython session
and start ipython again and use %run command, the print part has been
executed.

Does anyone else see this problem and I guess there is some flag to update
the script?

thanks,

Chao

&lt;/pre&gt;</description>
    <dc:creator>Chao YUE</dc:creator>
    <dc:date>2012-05-20T20:59:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8270">
    <title>call function with set break point?</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8270</link>
    <description>&lt;pre&gt;Dear all,

Just a one line question:
I have %run -d b20 script.py to set the break point at line20 when run the
script. Is there a way I can do the similar when I call a function?

thanks,

Chao
&lt;/pre&gt;</description>
    <dc:creator>Chao YUE</dc:creator>
    <dc:date>2012-05-20T18:38:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8269">
    <title>Re: Using the IPython notebook architecture</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8269</link>
    <description>&lt;pre&gt;Its all in the Javascript stuff that you want.  In fact, we have a
branch that is about to be merged that will help in all of this.  It
basically puts all the needed code into a few javascript files that
you can use on any web page.  You will still need to run our custom
HTTP server for the server side of things, but it should work fine.  I
would check back in two weeks to see when that branch is merged into
master.

Cheers,

Brian

On Fri, May 18, 2012 at 1:08 PM, K Krish &amp;lt;neurotheory2012&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:



&lt;/pre&gt;</description>
    <dc:creator>Brian Granger</dc:creator>
    <dc:date>2012-05-20T15:48:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8268">
    <title>Re: create all variables that are inside function inipython</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8268</link>
    <description>&lt;pre&gt;2012/5/19 Thomas Kluyver &amp;lt;takowl&amp;lt; at &amp;gt;gmail.com&amp;gt;


Thanks Thomas. I tried to open %pdb one before I launch the code. it helps.

cheers,

Chao





&lt;/pre&gt;</description>
    <dc:creator>Chao YUE</dc:creator>
    <dc:date>2012-05-19T20:32:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8267">
    <title>Re: MacOSX import error pyside and pyqt</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8267</link>
    <description>&lt;pre&gt;All works now !
Rajeev



On Sat, May 19, 2012 at 2:11 PM, Rajeev Jain &amp;lt;rajeeja&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:
&lt;/pre&gt;</description>
    <dc:creator>Rajeev Jain</dc:creator>
    <dc:date>2012-05-19T20:26:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8266">
    <title>Re: MacOSX import error pyside and pyqt</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8266</link>
    <description>&lt;pre&gt;You are right, I have ipython using my system python, pyside and qt
are installed in /usr/bin. I cuprit is brew they don't have a formula
for ipython...

outputs are below:

/Users/rajeevjain
==&amp;gt; echo $PYTHONPATH
/usr/local/lib/python2.7/site-packages

/Users/rajeevjain
==&amp;gt; sudo pip install ipython --upgrade
Requirement already up-to-date: ipython in /Library/Python/2.7/site-packages

In [19]: from PySide import QtCore
---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
/Users/rajeevjain/&amp;lt;ipython-input-19-c0454bed55e9&amp;gt; in &amp;lt;module&amp;gt;()
----&amp;gt; 1 from PySide import QtCore

ImportError: No module named PySide

In [20]: from PyQt4  import QtCore
---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
/Users/rajeevjain/&amp;lt;ipython-input-20-2a9a307137f7&amp;gt; in &amp;lt;module&amp;gt;()
----&amp;gt; 1 from PyQt4  import QtCore

ImportError: No module nam&lt;/pre&gt;</description>
    <dc:creator>Rajeev Jain</dc:creator>
    <dc:date>2012-05-19T19:11:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8265">
    <title>Re: MacOSX import error pyside and pyqt</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8265</link>
    <description>&lt;pre&gt;

Based on the path in his last traceback, I'd say it's installed to the
system Python.

Aaron Meurer

&lt;/pre&gt;</description>
    <dc:creator>Aaron Meurer</dc:creator>
    <dc:date>2012-05-19T19:10:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8264">
    <title>Re: MacOSX import error pyside and pyqt</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8264</link>
    <description>&lt;pre&gt;Hi again Rajeev,

On 19 May 2012 19:37, Rajeev Jain &amp;lt;rajeeja&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

What do you see if you try:

from PySide import QtCore
from PyQt4  import QtCore

Is your IPython installed through macports, or using your macports
Python? If it's installed on, say, the Mac system version of Python,
it might not be able to see the libraries from macports unless you set
your PYTHONPATH.

Thomas
&lt;/pre&gt;</description>
    <dc:creator>Thomas Kluyver</dc:creator>
    <dc:date>2012-05-19T18:48:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8263">
    <title>MacOSX import error pyside and pyqt</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8263</link>
    <description>&lt;pre&gt;This is on Mac OSX, I'm trying to do ipython qtconsole:-

/Users/rajeevjain
==&amp;gt; brew install PySide
Error: pyside-1.1.0 already installed

/Users/rajeevjain
==&amp;gt; brew install PyQt
Error: pyqt-4.9.1 already installed

/Users/rajeevjain
==&amp;gt; ipython
Python 2.7.1 (r271:86832, Jul 31 2011, 19:30:53)
Type "copyright", "credits" or "license" for more information.

IPython 0.12.1 -- An enhanced Interactive Python.
? -&amp;gt; Introduction and overview of IPython's features.
%quickref -&amp;gt; Quick reference.
help -&amp;gt; Python's own help system.
object? -&amp;gt; Details about 'object', use 'object??' for extra details.

In [1]: from IPython.external.qt import QtCore, QtGui
ImportError Traceback (most recent call last)
/Users/rajeevjain/ in ()
----&amp;gt; 1 from IPython.external.qt import QtCore, QtGui

/Library/Python/2.7/site-packages/IPython/external/qt.py in ()
40 QT_API = QT_API_PYQT
41 except ImportError:
---&amp;gt; 42 raise ImportError('Cannot import PySide &amp;gt;= 1.0.3 or PyQt4 &amp;gt;= 4.7')
43
44 elif QT_API == QT_API_PYQT:

ImportError: Cannot import&lt;/pre&gt;</description>
    <dc:creator>Rajeev Jain</dc:creator>
    <dc:date>2012-05-19T18:37:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8262">
    <title>Re: create all variables that are inside function inipython</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8262</link>
    <description>&lt;pre&gt;
No, Python's scoping doesn't work like that. However, if the code you
want to debug throws an exception, you can call %debug to jump into
the debugger for that exception. Or use %pdb beforehand to go into the
debugger automatically for any exception.

Alternatively, if it's not throwing exceptions, or you want to examine
it earlier, you can use IPython.embed() to start IPython from inside a
function to inspect the variables. In that case, you should run the
code from outside IPython, otherwise it gets a bit confused.

Thomas
&lt;/pre&gt;</description>
    <dc:creator>Thomas Kluyver</dc:creator>
    <dc:date>2012-05-19T16:33:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8261">
    <title>create all variables that are inside function inipython</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8261</link>
    <description>&lt;pre&gt;Dear all,

I am frustrated by debugging code now... Is there a way that when I call a
function, all the variables within the function will be created in current
ipython interactive session namespace
and then I can run the script in a way of %run -i myjob.py, if there is any
bug, I can print the most recent variable in the loop and check what's
going one, rather than modifying the code again
and again with try-except blocks or adding pdb.set_trace() here and there.
This might no be good practice but I think for not large amount of data,
it's a good way to debug.

thanks et cheers,

Chao

&lt;/pre&gt;</description>
    <dc:creator>Chao YUE</dc:creator>
    <dc:date>2012-05-19T15:12:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8260">
    <title>Using the IPython notebook architecture</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8260</link>
    <description>&lt;pre&gt;Hello IPython group,

I have some Python-based algorithms which I want to share with other
researchers via a webpage.
The users will able to run the algorithms on their uploaded data files, and
they can view the results in plots (displayed on the webpage) etc.
Since the IPython notebook interface already provides something that can do
this (and much more!), I was thinking of basically copying and modifying
the implementation for my webpage. I won't need an interactive shell as
most of the users won't be programmers and won't know Python -- the UI in
the webpage will using their settings and parameters to run the Python
scripts in the background.

Here's my question/request to the group ---
Note: My experience in web development is very very basic.

1) This seems like straightforward task, since most of the things I need
are already implemented in the notebook interface: the web server, calling
the IPython kernel from the webpage, plotting graphs in the webpage etc. Do
you recommend starting with the existing&lt;/pre&gt;</description>
    <dc:creator>K Krish</dc:creator>
    <dc:date>2012-05-18T20:08:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8259">
    <title>Re: [SOLVED] Re: loading modules at startup?</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8259</link>
    <description>&lt;pre&gt;
%whos doesn't necessarily show everything in your namespace - I think
it hides things that are loaded at startup, so you can see what you've
defined manually. Can you access pa or sm?

Thomas
&lt;/pre&gt;</description>
    <dc:creator>Thomas Kluyver</dc:creator>
    <dc:date>2012-05-18T10:01:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8258">
    <title>Re: ipython notebook doesn't launch browser "could not open file(notebook) for safe execution</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8258</link>
    <description>&lt;pre&gt;Thankyou so much! It's working now. I just updated my version if IPython.

I must have had an old version of Ipython. Then today I installed pythonxy.


On Fri, May 18, 2012 at 9:36 PM, Matthias Bussonnier [via Python] &amp;lt;
ml-node+s6n4975039h75&amp;lt; at &amp;gt;n6.nabble.com&amp;gt; wrote:



--
View this message in context: http://python.6.n6.nabble.com/ipython-notebook-doesn-t-launch-browser-could-not-open-file-notebook-for-safe-execution-tp4975037p4975041.html
Sent from the IPython - User mailing list archive at Nabble.com._______________________________________________
IPython-User mailing list
IPython-User&amp;lt; at &amp;gt;scipy.org
http://mail.scipy.org/mailman/listinfo/ipython-user
&lt;/pre&gt;</description>
    <dc:creator>robertking</dc:creator>
    <dc:date>2012-05-18T09:50:46</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8257">
    <title>Re: ipython notebook doesn't launch browser "could not open file(notebook) for safe execution</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8257</link>
    <description>&lt;pre&gt;
Apparently you are using 0.10.2 , only 0.12 and above have the notebook.
How did you install the last version ?
Did you try removing the old version ?

&lt;/pre&gt;</description>
    <dc:creator>Matthias Bussonnier</dc:creator>
    <dc:date>2012-05-18T09:35:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.ipython.user/8256">
    <title>ipython notebook doesn't launch browser "could not open file(notebook) for safe execution</title>
    <link>http://permalink.gmane.org/gmane.comp.python.ipython.user/8256</link>
    <description>&lt;pre&gt;Launching notepad gives the error below, and opens ipython as usual, but not
the browser.

Microsoft Windows [Version 6.0.6002]
Copyright (c) 2006 Microsoft Corporation.  All rights reserved.

*C:\Windows\system32&amp;gt;ipython notebook
Could not open file &amp;lt;notebook&amp;gt; for safe execution.*
Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)]
Type "copyright", "credits" or "license" for more information.

IPython 0.10.2 -- An enhanced Interactive Python.
?         -&amp;gt; Introduction and overview of IPython's features.
%quickref -&amp;gt; Quick reference.
help      -&amp;gt; Python's own help system.
object?   -&amp;gt; Details about 'object'. ?object also works, ?? prints more.

In [1]: import tornado, zmq

In [2]: tornado.version
Out[2]: '2.2.1'

In [3]: zmq.__version__
Out[3]: '2.2.0'

In [4]: import simplejson


--
View this message in context: http://python.6.n6.nabble.com/ipython-notebook-doesn-t-launch-browser-could-not-open-file-notebook-for-safe-execution-tp4975037.html
Sent from the IPython - User mailing list &lt;/pre&gt;</description>
    <dc:creator>robertking</dc:creator>
    <dc:date>2012-05-18T09:28:58</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.python.ipython.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.python.ipython.user</link>
  </textinput>
</rdf:RDF>

