bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#958: marked as done (Python 2.6b2 interpreter error with `emacs.py'


From: Emacs bug Tracking System
Subject: bug#958: marked as done (Python 2.6b2 interpreter error with `emacs.py')
Date: Thu, 11 Sep 2008 16:15:05 -0700

Your message dated Thu, 11 Sep 2008 19:04:32 -0400
with message-id <wu8wtyp9mn.fsf@fencepost.gnu.org>
and subject line Re: bug#958: Python 2.6b2 interpreter error with `emacs.py'
has caused the Emacs bug report #958,
regarding Python 2.6b2 interpreter error with `emacs.py'
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact don@donarmstrong.com
immediately.)


-- 
958: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=958
Emacs Bug Tracking System
Contact don@donarmstrong.com with problems
--- Begin Message --- Subject: Python 2.6b2 interpreter error with `emacs.py' Date: Wed, 10 Sep 2008 23:49:00 -0500
I have installed Python 2.6b2 and Emacs 22.3.1 (from binaries in both
cases). When I open `emacs.py' or any other python source file and run
the python interpreter from within emacs I receive the following
error:
 d:\Program Files\GNU\GNU Emacs\emacs-22.3\etc\emacs.py:24:
DeprecationWarning: the sets module is deprecated
  from sets import Set

In GNU Emacs 22.3.1 (i386-mingw-nt5.1.2600)
 of 2008-09-06 on SOFT-MJASON
Windowing system distributor `Microsoft Corp.', version 5.1.2600
configured using `configure --with-gcc (3.4)'

Important settings:
  value of $LC_ALL: nil
  value of $LC_COLLATE: nil
  value of $LC_CTYPE: nil
  value of $LC_MESSAGES: nil
  value of $LC_MONETARY: nil
  value of $LC_NUMERIC: nil
  value of $LC_TIME: nil
  value of $LANG: ENU
  locale-coding-system: cp1252
  default-enable-multibyte-characters: t

Major mode: Lisp Interaction

Minor modes in effect:
  encoded-kbd-mode: t
  tooltip-mode: t
  tool-bar-mode: t
  mouse-wheel-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  unify-8859-on-encoding-mode: t
  utf-translate-cjk-mode: t
  auto-compression-mode: t
  line-number-mode: t

Recent input:
<help-echo> <help-echo> <help-echo> <help-echo> <help-echo> 
<help-echo> <help-echo> <help-echo> <help-echo> <help-echo> 
<help-echo> <help-echo> <help-echo> <menu-bar> <help-menu> 
<send-emacs-bug-report>

Recent messages:
("D:\\Program Files\\GNU\\GNU Emacs\\emacs-22.3\\bin\\emacs.exe")
Loading encoded-kb...done
For information about GNU Emacs and the GNU system, type C-h C-a.
Loading emacsbug...
Loading regexp-opt...done
Loading emacsbug...done

--
Allan J. Mu





--- End Message ---
--- Begin Message --- Subject: Re: bug#958: Python 2.6b2 interpreter error with `emacs.py' Date: Thu, 11 Sep 2008 19:04:32 -0400 User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)
"Allan Mui" wrote:

> I have installed Python 2.6b2 and Emacs 22.3.1 (from binaries in both
> cases). When I open `emacs.py' or any other python source file and run
> the python interpreter from within emacs I receive the following
> error:
>  d:\Program Files\GNU\GNU Emacs\emacs-22.3\etc\emacs.py:24:
> DeprecationWarning: the sets module is deprecated
>   from sets import Set

(This is just a warning, not an error, no?)

Looks like this is already handled in the CVS trunk version, so will
be fixed in Emacs 23.1, via:

try:
    set
except:
    from sets import Set as set


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]