Re: PEP 378: Format Specifier for Thousands Separator

2013-05-20 Thread Ned Deily
vailable? For Python 3.2+ or 2.7, why not just: >>> print('Number = {:,}'.format(x)) Number = 12,345 -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Is python.org powered by CPython?

2013-05-24 Thread Ned Deily
ercurial. FTR, the whole python.org web domain is being redesigned so the details of what is under the covers will be changing. Jesse Noller posted about the redesign process some months ago: http://jessenoller.com/blog/2012/11/28/the-great-python-org-redesign -- Ned Deily, n...@acm.org

Re: n00b question on spacing

2013-06-22 Thread Ned Deily
t.) This behavior is explicitly defined in the Python Language Reference: http://docs.python.org/3/reference/lexical_analysis.html#string-literal-c oncatenation -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Python list code of conduct

2013-07-02 Thread Ned Deily
raffic group, running at around 200 posts per day. There are several different archives: ? Google Groups archive of comp.lang.python ? python.org archive of python-list ? gmane.org archive of python-list -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Python list code of conduct

2013-07-02 Thread Ned Deily
In article , Roy Smith wrote: > In article , > Ned Deily wrote:> > > If you find a bug in Python, don't send it to comp.lang.python; file > > a bug report in the issue tracker. > I'm not sure I agree with that one, at least not fully. It's cert

Re: Python 2.6 on Mac 10.7 doesn't work

2012-07-17 Thread Ned Deily
ince then. If you need Python 2, you really should consider moving to Python 2.7, which is already at 2.7.3 and is fully maintained. (The most recent Python 3 release is 3.2.3, also fully maintained.) -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: py2app bundling scikits-image etc.

2012-07-22 Thread Ned Deily
bly the best place to ask questions about py2app is on the Python Mac SIG list: http://www.python.org/community/sigs/current/pythonmac-sig/ -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Abuse of Big Oh notation

2012-08-20 Thread Ned Deily
t mac-roman; it is not relevant. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Filter versus comprehension (was Re: something about split()???)

2012-08-24 Thread Ned Deily
high load denials should be a thing of the past as the gmane NNTP server was very recently upgraded to use SSDs instead of standard disks. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Filter versus comprehension (was Re: something about split()???)

2012-08-24 Thread Ned Deily
.python.org/mailman/listinfo/core-mentorship -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: sys.path in python3.3

2012-08-26 Thread Ned Deily
build. What is the value of sys.path? -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: sys.path in python3.3

2012-08-26 Thread Ned Deily
In article , Nicholas Cole wrote: > On Sun, Aug 26, 2012 at 8:21 PM, Ned Deily wrote: > > In article > > , > > Nicholas Cole wrote: > >> In all previous versions of python, I've been able to install packages > >> into the path: > >>

Re: sys.path in python3.3

2012-08-26 Thread Ned Deily
Python.framework/Versions/3.3/lib/python3.3/plat-dar win', '/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/lib-dynl oad', '/Users/nad/Library/Python/3.3/lib/python/site-packages', '/Users/nad/Library/Python/3.3/lib/python/site-packages/setuptools-0

Re: sys.path in python3.3

2012-08-27 Thread Ned Deily
s for Python 3.4 and that there will be a push to rationalize things in this rather murky area of Python. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: sys.path in python3.3

2012-08-27 Thread Ned Deily
e the same. The difference is with 3.1 (which is no longer supported); likewise, the same change occurred in 2.7. So all of the current actively supported released behave the same way. That's not much help if you need to use 2.6 or 3.1. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Python list archives double-gzipped?

2012-08-27 Thread Ned Deily
gt; problem, as well as reduce server load (since it's actually taking > the time to make the file larger) http://mail.python.org/mailman/listinfo/pydotorg-www -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Newbie: where's the new python gone?

2012-09-09 Thread Ned Deily
opening a new terminal window and typing python2.7. In any case, as suggested: which python should tell you the path to the python you are invoking. It doesn't appear to be an Apple-supplied one or a python.org one, BTW. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: conflicting installations of python

2012-09-12 Thread Ned Deily
ensure that the macports bin directory comes first on your shell search path; by default, it is /opt/local/bin. Try something like this: export PATH=/opt/local/bin:$PATH Otherwise, use an alias or an absolute path: /opt/local/bin/python -- Ned Deily, n...@acm.org -- http://mai

Re: conflicting installations of python

2012-09-12 Thread Ned Deily
om > Traceback (most recent call last): > File "", line 1, in > AttributeError: 'module' object has no attribute 'urandom' Looks like you are using a broken Python installation. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Reading a file in IDLE 3 on Mac-Lion

2012-09-23 Thread Ned Deily
lt to link with the former and, with 8.4, the Open file dialog box does have the file-type filter menu as Hans describes. The python.org 64-/32-bit installers link with the newer Cocoa Tk 8.5 and, with it, the Open file dialog box does not have the filter menu. I'm not sure there is anything that IDLE or Tkinter can do about that; any change may need to be by the Tcl/Tk folks. But it would be good if you would open an issue at bugs.python.org so we can follow up on it. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Who's laughing at my responses, and who's not?

2012-09-24 Thread Ned Deily
and to be expected but the Python community is *very* serious about mutual respect and respecting diversity. If you want to be taken seriously here, please keep that in mind. http://www.python.org/community/diversity/ -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Anybody know what's up with Gmane?

2012-10-04 Thread Ned Deily
I've tried flagging this up but obviously with no success. Anyone any ideas > on how to sort this out? There were problems on one of the gmane servers. The problem was fixed as of about three hours ago and things should be returning to normal. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Problems building Python from hg trunk on Open SUSE

2012-10-05 Thread Ned Deily
lve this would be appreciated. It looks like you're running into the problems described in: http://bugs.python.org/issue15631 -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: How to use "while" within the command in -c option of python?

2012-10-12 Thread Ned Deily
are using a POSIX-compatible shell, the canonical approach for use cases like this is to use a "here document", for example: python - <http://en.wikipedia.org/wiki/Here_document -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: [on topic] Re: readline trick needed

2012-10-16 Thread Ned Deily
systems and probably on *BSD systems) and they have different command strings. Note the warning here: http://docs.python.org/py3k/library/readline.html Or it may not be linked with either. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: [on topic] Re: readline trick needed

2012-10-16 Thread Ned Deily
In article , Peter Otten <__pete...@web.de> wrote: > Ned Deily wrote: > > Keep in mind that the Python readline module may be linked to either the > > GPL-licensed GNU readline or the BSD-licensed editline (libedit) library > > (the default on newer OS X systems and pr

Re: pip fails to install packages on moutain loin (Mac OS 10.8.2)

2012-10-18 Thread Ned Deily
to build without using an SDK, which may work. Also, you may need to define env variable CXX if you are building c++: export CXX=/usr/bin/g++ or export CXX=/usr/bin/clang++ The plan is for the next maintenance release of Python 2.7 to work better with current Xocde 4.x on 10.7 an

Re: pip fails to install packages on moutain loin (Mac OS 10.8.2)

2012-10-18 Thread Ned Deily
as long as you have Xcode installed. > > `sudo ports install py27-pip` Yes, that should be another viable option as all of the components should be built with the same version of the Xcode tool chain. Also, some or all of the third-party packages may already be available as MacP

Re: Python version and svn

2012-12-13 Thread Ned Deily
ntain the complete source history of all branches: hg clone http://hg.python.org/cpython More details here: http://docs.python.org/devguide/ -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Question on Python Conference

2013-01-19 Thread Ned Deily
on are here: http://pyvideo.org/category/17/pycon-us-2012 -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Stopping a looping computation in IDLE 3.2.x

2012-02-11 Thread Ned Deily
aller for 10.6? Do you have the latest ActiveState Tcl/Tk 8.5.11 installed? http://www.python.org/download/mac/tcltk/ -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Automatic Type Conversion to String

2012-02-15 Thread Ned Deily
://pypi.python.org/pypi/pathlib -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

[FIXED] Re: Can't get tilde character with IDLE 3.2.2 on French Mac Lion

2012-03-04 Thread Ned Deily
A followup to a thread in 2011-12. In article , Ned Deily wrote: > In article , > Franck Ditter wrote: > > In article , > > Ned Deily wrote: > > > In article , > > > Franck Ditter wrote: > > > > All is in the subject. I'm starting

Re: Buffering in Wing and IDLE 3

2012-03-04 Thread Ned Deily
itted: > > http://core.tcl.tk/tk/info/9844fe10b9 ... and released in ActiveState 8.5.11.1 http://www.activestate.com/activetcl/downloads -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Python site-packages permission denied?

2012-03-07 Thread Ned Deily
s. They even provide versions of easy_install for the system Pythons. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: [RELEASED] Python 3.3.0 alpha 2

2012-04-02 Thread Ned Deily
links have now been updated to point to the 3.3a2 files. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Question on Python 3 shell restarting

2012-04-10 Thread Ned Deily
with focus. So, in IDLE, if you have an IDLE Shell window, an IDLE edit window, and an IDLE debug window open, you will see somewhat different menu options depending on which of those windows you click on. If you click on the IDLE shell window, you'll see a Shell menu option with a Restart Shell menu item that has a ^F6 accelerator. If you click on the edit window, that menu item is no longer available. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: trying to use spec file

2012-04-24 Thread Ned Deily
ed downstream by third-party distributors who do but I'm guessing they have their own, more complex spec files that they maintain themselves. You might want to open an issue on the bug tracker (bugs.python.org) or ask on the python-dev mailing list. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Mailing list assistance: manual unsubscribing of failed recipient?

2012-05-10 Thread Ned Deily
In article , Chris Angelico wrote: > Who is in charge of the list? Can pyjk...@azet.sk be unsubscribed manually? http://mail.python.org/mailman/listinfo/python-list -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Carbon Event Manager (Carbon.CarbonEvt module) - working?

2012-05-15 Thread Ned Deily
n 32-bit-mode. For those Apple-supplied Pythons, see the Apple man page (man 1 python) for system Python specific ways to force 32-bit mode persistently. Another way that should work for any OS X universal Python 2.7.x: arch -i386 python2.7 -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Carbon Event Manager (Carbon.CarbonEvt module) - working?

2012-05-15 Thread Ned Deily
they won't work with other OS X Python distributions like those from python.org. The "arch" command should work with all of them, as long as you use "python2.7"; it won't work with the Apple wrapper program /usr/bin/python. And I believe the Apple modifications

Re: Use a locally built Tk for Python?

2012-06-04 Thread Ned Deily
st likely by adding your Tcl/Tk directories to the INCLUDEDIR and LIBDIR variables; see the beginning of detect_modules() in setup.py. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: [Q] How to specify options for 'setup.py install' by environment variable?

2012-06-09 Thread Ned Deily
tallations. The supported method is to put frequently-used preferences into one of several configuration files. See http://docs.python.org/install/index.html#inst-config-fileshttp://docs.py thon.org/install/index.html#inst-config-files -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: [Q] How to specify options for 'setup.py install' by environment variable?

2012-06-09 Thread Ned Deily
In article , Makoto Kuwata wrote: > On Sun, Jun 10, 2012 at 11:55 AM, Ned Deily wrote: > > In article > > , > >  Makoto Kuwata wrote: > >> "setup.py install" command supports options such as --prefix, > >> --install-scripts, and so on. > &

Re: Where is the Demo Directory in Python 3.2?

2011-06-02 Thread Ned Deily
ed. Some demos were integrated into the documentation, some were moved to the Tools/demo directory, and others were removed altogether." -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Updated now can't scroll uparrow

2011-06-03 Thread Ned Deily
ttp://www.python.org/download/releases/3.2.1/ http://www.python.org/download/releases/3.1.4/ http://www.python.org/download/releases/2.7.2/ -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Import error while running python application on Mac OS

2011-06-09 Thread Ned Deily
frustrating if you try to guess at it or use binaries from different suppliers. If possible, use a complete solution from a 3rd-party open source packager, like MacPorts or Homebrew. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: pkg_resources ?

2011-06-14 Thread Ned Deily
setuptools (or the Distribute clone of setuptools) when a script is installed with easy_install. The main reason for the wrapper is to allow multiple versions of a Python "package" (in the PyPi sense) to be installed in one Python instance. There's more information here: http://peak

Re: os.path and Path

2011-06-16 Thread Ned Deily
vetoed by Guido. http://bugs.python.org/issue1226256 http://wiki.python.org/moin/PathModule -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Mac OS X 10.6.6 and MacPyhton 2.6 idle doesn't work

2011-06-23 Thread Ned Deily
work just fine with the Apple-supplied Tcl/Tk 8.4 or with ActiveState Tcl/Tk 8.4. More info here: http://www.python.org/download/mac/tcltk/ -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Interpreting Left to right?

2011-06-24 Thread Ned Deily
gt; x['huh'] = tmp # NameEror! > > That is, the right hand sides of assignments are evaluated before the > left hand sides. That is (somehow?) not the case here. http://docs.python.org/py3k/reference/simple_stmts.html#assignment-statem ents -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Mac OS X 10.6.6 and MacPyhton 2.6 idle doesn't work

2011-06-24 Thread Ned Deily
x27;s wrong. It's especially odd that you would see a problem with IDLE.app since it is not influenced by shell initialization steps. Do you have something set in ~/.MacOSX/environment.plist ? Also, try launching that idle from a shell: $ /usr/local/bin/idle2.6 -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Interpreting Left to right?

2011-06-24 Thread Ned Deily
In article <20110624210835.gl6...@point.cs.wisc.edu>, Tycho Andersen wrote: > On Fri, Jun 24, 2011 at 01:24:24PM -0700, Ned Deily wrote: > > In article <20110624200618.gk6...@point.cs.wisc.edu>, > > Tycho Andersen wrote: > > > Yes, I understand that,

Re: Installing Python Apps on Mac Lion

2011-06-24 Thread Ned Deily
ller do? I don't know about Lion but the Apple-supplied Pythons in previous versions of OS X (10.6 and 10.5) install site packages by default into /Library/Python. If you use the Distutils defaults with the system Pythons in10.7, they will likely do the same. -- Ned Deily, n...@acm.o

Re: Mac OS X 10.6.6 and MacPyhton 2.6 idle doesn't work

2011-06-28 Thread Ned Deily
you are seeing. If you want to stick with the python.org Python 2.6, I suggest you download the latest installer from here: http://python.org/download/releases/2.6.6/ and re-install. Good luck. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: treeviewcontrol in tkinter.ttk

2011-06-30 Thread Ned Deily
ython.org/mailman/listinfo/tkinter-discuss https://lists.sourceforge.net/lists/listinfo/tcl-mac -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: How to compile on OS X PPC? was: Re: [RELEASED] Python 3.2

2011-07-11 Thread Ned Deily
In article , Ned Deily wrote: > In article <4d640175$0$81482$e4fe5...@news.xs4all.nl>, > Irmen de Jong wrote: > > However, I'm having trouble compiling a framework build from source on > > Mac OS 10.5.8 on PowerPC. No matter what I try (gcc 4.0, gcc 4.2, > &g

Re: Problem compiling Python 3.2 in 32bit on Snow Leopard

2011-07-11 Thread Ned Deily
In article , Ned Deily wrote: > In article <8t5vunfca...@mid.individual.net>, > Gregory Ewing wrote: > > Attempting to compile Python 3.2 in 32-bit mode > > on MacOSX 10.6.4 I get: > > > > Undefined symbols: > >"___moddi3", referen

Re: Inconsistencies between zipfile and tarfile APIs

2011-07-22 Thread Ned Deily
n continues and mainstream OS's include specific Python 3 releases. But, for now, it's easy: just target the most recent Python 3 release, currently 3.2.1. Don't worry about earlier releases. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Aw: Re: Aw: python.org back up ?(was Re: python.org is down?)

2011-07-25 Thread Ned Deily
tage of the on-line versions is that they are updated daily with the latest fixes to the documentation. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: ActivePython: multiple versions on OSX?

2011-07-25 Thread Ned Deily
layout on OS X, which is used by both the python.org installers and, I believe, the ActiveState installers. http://www.python.org/download/ -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: ActivePython: multiple versions on OSX?

2011-07-26 Thread Ned Deily
current state is not ideal, especially for new users of Python. I'm hoping we can make life a bit easier by the time 3.3 is released next year. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: /lib-tk/Tkinter.py", for Tk/python2.7/lib-dynload/_tkinter.so, hon2.

2011-07-31 Thread Ned Deily
e easiest thing is to only build 32-bit only. But Python 3.1 is already in security-fix-only mode: best to move on to Python 3.2 which does not have these issues. See also: http://www.python.org/download/mac/tcltk/ -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Hardlink sub-directories and files

2011-08-03 Thread Ned Deily
ackup system work efficiently. The hard directory links are, of course, not meant to be used by the casual user. The section "Directory Hard Links" in this blog entry from Amit Singh explains what restrictions are enforced on directory hard links to prevent cycles: http://osxbook.com/blog/2008/11/09/hfsdebug-40-and-new-hfs-features/ -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Problem installing 3.2.1 on a Linux server

2011-08-06 Thread Ned Deily
acros and tools that are used by the ./configure script. On my system: $ autoconf --version autoconf (GNU Autoconf) 2.68 -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: PyPI Situation?

2011-08-07 Thread Ned Deily
thon Catalog SIG mailing list. You should take a look at the archives there and jump into the discussions: http://mail.python.org/mailman/listinfo/catalog-sig and mirrored in various formats here: http://dir.gmane.org/gmane.comp.python.catalog -- Ned Deily, n...@acm.org -- http:/

Re: code object differences between 2.7 and 3.3a

2011-08-11 Thread Ned Deily
f changes and additions. For instance, as part of the transition earlier this year from Subversion to Mercurial, great care was taken to preserve as much of the existing source history as possible going far back into the time machine. It's to your advantage to take advantage of these s

Re: pairwise combination of two lists

2011-08-17 Thread Ned Deily
, 'b1', 'b2'] > > Is there a handy and efficient function to do this, especially when li1 and > li2 are long lists. > I found zip() but it only gives [('a', '1'), ('b', '2')], not exactly what I > am looking for. >>

Re: List spam

2011-08-18 Thread Ned Deily
most of the spam (a little bit gets through). The gmane nntp server (which is for gmane groups only, not regular Usenet groups) is free to use. http://gmane.org/about.php -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: py3k: datetime resolution / isoformat

2011-02-25 Thread Ned Deily
gt;> datetime.datetime.now().replace(microsecond=0).isoformat() '2011-02-25T18:48:24' -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Problem compiling Python 3.2 in 32bit on Snow Leopard

2011-03-01 Thread Ned Deily
ibtool: internal link edit command failed > > Any suggestions? http://article.gmane.org/gmane.comp.python.general/685151 -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Darwin build error with MacPorts Python 2.7.1 installed.

2011-03-02 Thread Ned Deily
orking Python of some sort early in the build process. The problem is the working Python is being affected by the MACOSX_DEPLOYMENT_TARGET value, which configure currently defaults to 10.4 in the absence of other parameters. I don't think there is a issue open on this; I will open one a

Re: python xmp toolkit question

2011-03-04 Thread Ned Deily
l/bin/python_select python27 $ sudo port install boost +python27 In fact, MacPorts has a port file for Exempi itself (http://www.macports.org/ports.php?by=name&substr=exempi) $ sudo port install exempi Then, using the MacPorts python you installed, you should be able to easily install the toolkit. Good luck! -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: ttk styles

2011-03-17 Thread Ned Deily
In article , Peter wrote: > No responses? Nobody with knowledge of modifying styles etc? You might also want to ask on the tkinter mailing list: http://mail.python.org/pipermail/tkinter-discuss/ -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: multiprocessing Pool workers cannot create subprocesses

2011-03-18 Thread Ned Deily
sses that will be terminated (and not joined) if non-daemonic processes have exited." -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Problem with keyboard up/down arrows in Python 2.4 interpreter

2011-03-25 Thread Ned Deily
o longer supported by the Python developers. It probably won't build correctly on current OS X 10.6 without some help. Python 2.7.1 and Python 3.2 are the current releases. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Equivalent code to the bool() built-in function

2011-04-17 Thread Ned Deily
-c 'False = True; print(False)' File "", line 1 SyntaxError: assignment to keyword -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: "Fatal Python Error" Need Help

2011-04-19 Thread Ned Deily
e to find. No, you have a more serious problem. From the paths displayed, I'm guessing you used Fink to install those Pythons and packages. You may want to ask on the Fink mailing lists or IRC channel. http://www.finkproject.org/help/index.php?phpLang=en -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: renaming files in OS X

2011-04-20 Thread Ned Deily
s -l a.jpg -rw-r--r--@ 1 nad staff 2425268 Apr 4 16:30 a.jpg $ ls -l@ a.jpg -rw-r--r--@ 1 nad staff 2425268 Apr 4 16:30 a.jpg com.apple.FinderInfo 32 -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Question about compiling python 30 from subversion repository on OSX

2011-04-23 Thread Ned Deily
original build failure. > The 3.2 branch > (http://svn.python.org/projects/python/branches/release32-maint) can be > compiled without much issue. That is out-of-date as well. All current development and maintenance branches (2.7, 3.1, 3.2, default(=py3k)) are now maintained in the hg repo as described in the developer's guide. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: socket.gethostbyaddr() wrongly returning a DNS CNAME as the 'primary' hostname

2011-04-28 Thread Ned Deily
x.xx.xx']) socket.gethostbyaddr() is pretty much just a transparent wrapper around the platform's C library function of the same name. See if a simple C program with a similar call to gethostbyaddr produces the same results. The code in question for Python 2.7 is here: http://hg.python.

Re: Having a problem getting python working...

2011-05-17 Thread Ned Deily
e a crash report that would be great. But, first, are you sure you were using IDLE 3.2 and not the Apple-supplied IDLE 2.6 in OS X 10.6? The latter will definitely exhibit that behavior. If you are installed Python 3.2 from one of the python.org installers, IDLE 3.2 will be available in /App

Re: Python 2.6.7 release candidate 2 now available

2011-05-20 Thread Ned Deily
Python Developer's Guide: http://docs.python.org/devguide/devcycle.html#security-branches > Who decides whether the security fix is critical? Anyone can propose a security fix but the final decision is up to the release manager in charge of the branch. For 2.6.x, that is Barry. --

Re: Building Python: static library "3.2m"

2011-05-22 Thread Ned Deily
ones that affect the Python C ABI) to co-exist in one Python installation. "m" means that they were built with pymalloc. Other flags are "d" for debug, and "u" for wide-unicode. http://docs.python.org/py3k/whatsnew/3.2.html#pep-3149-abi-version-tagged

Re: Tkinter bug?

2011-05-23 Thread Ned Deily
rg/library/turtle.html -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Link errors embedding Python 3.2

2011-05-26 Thread Ned Deily
but sudo make install doesn't put it anywhere > else. Pointing LD_LIBRARY_PATH to there causes my program to segfault > with thread context errors. > > Am I asking this in the wrong forum? Would it be more appropriate in > python-dev? The discussion in http://bugs.python.org/

Re: Updated now can't scroll uparrow

2011-06-01 Thread Ned Deily
bility interface of BSD editline (libedit) which Apple does ship but that feature was not backported to Python 3.1. The python.org 3.1.x installers are built with GNU readline (and there is one for 3.1.4rc1). -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list

Python 3.3.7rc1 now available prior to Python 3.3 end-of-life

2017-09-06 Thread Ned Deily
://www.python.org/downloads/release/python-337rc1/ -- Ned Deily n...@python.org -- [] -- https://mail.python.org/mailman/listinfo/python-list

[RELEASE] Python 3.6.3rc1 and 3.7.0a1 are now available for testing and more

2017-09-19 Thread Ned Deily
ing system releases and some tests may fail. If you are still using Python 3.3.x, we **strongly** encourage you to upgrade now to a more recent, fully supported version of Python 3. You can find Python 3.3.7 here: https://www.python.org/downloads/release/python-337/ -- Ned Deily n...@

[RELEASE] Python 3.6.3 is now available

2017-10-03 Thread Ned Deily
The next maintenance release of Python 3.6 is expected to follow in about 3 months, around the end of 2017-12. More information about the 3.6 release schedule can be found here: https://www.python.org/dev/peps/pep-0494/ Enjoy! -- Ned Deily n...@python.org -- [] -- https://mail.python.org/mailma

[RELEASE] Python 3.7.0a2 is now available for testing

2017-10-17 Thread Ned Deily
a preview release and its use is not recommended for production environments. The next preview, 3.7.0a3, is planned for 2017-11-27. You can find Python 3.7.0a2 and more information here: https://www.python.org/downloads/release/python-370a2/ -- Ned Deily n...@python.org -- [] -- https

[RELEASE] Python 3.6.4rc1 and 3.7.0a3 now available for testing

2017-12-05 Thread Ned Deily
/ -- Ned Deily n...@python.org -- [] -- https://mail.python.org/mailman/listinfo/python-list

Re: [Python-Dev] [RELEASE] Python 3.6.4rc1 and 3.7.0a3 now available for testing

2017-12-06 Thread Ned Deily
if you or perhaps your organization would like to help the Python community in other ways, consider supporting the Python Software Foundation: https://www.python.org/psf-landing/. -- Ned Deily n...@python.org -- [] -- https://mail.python.org/mailman/listinfo/python-list

[RELEASE] Python 3.6.4rc1 and 3.7.0a3 now available for testing

2017-12-08 Thread Ned Deily
-370a3/ -- Ned Deily n...@python.org -- [] -- https://mail.python.org/mailman/listinfo/python-list

[RELEASE] Python 3.6.4 is now available

2017-12-19 Thread Ned Deily
The next maintenance release of Python 3.6 is expected to follow in about 3 months, around the end of 2018-03. More information about the 3.6 release schedule can be found here: https://www.python.org/dev/peps/pep-0494/ Enjoy! -- Ned Deily n...@python.org -- [] -- https://mail.python.org/mailma

[RELEASE] Python 3.7.0a4 is now available for testing

2018-01-09 Thread Ned Deily
preview release and its use is not recommended for production environments. The next preview release, 3.7.0b1, is planned for 2018-01-29. You can find Python 3.7.0a4 and more information here: https://www.python.org/downloads/release/python-370a4/ -- Ned Deily n...@python.org

[RELEASE] Python 3.7.0b1 is now available for testing

2018-01-31 Thread Ned Deily
n be found here: https://www.python.org/dev/peps/pep-0537/ -- Ned Deily n...@python.org -- [] -- https://mail.python.org/mailman/listinfo/python-list

[RELEASE] Python 3.7.0b2 is now available for testing

2018-02-27 Thread Ned Deily
nd here: https://www.python.org/dev/peps/pep-0537/ -- Ned Deily n...@python.org -- [] -- https://mail.python.org/mailman/listinfo/python-list

[RELEASE] Python 3.7.10 and 3.6.13 security updates now available

2021-02-15 Thread Ned Deily
://www.python.org/psf-landing/ -- Ned Deily n...@python.org -- [] -- https://mail.python.org/mailman/listinfo/python-list

[RELEASE] Python 3.7.12 and 3.6.15 security updates now available

2021-09-04 Thread Ned Deily
://www.python.org/psf-landing/ -- Ned Deily n...@python.org -- [] signature.asc Description: Message signed with OpenPGP -- https://mail.python.org/mailman/listinfo/python-list

  1   2   3   4   5   6   >