From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Paul Pogonyshev Newsgroups: gmane.emacs.devel Subject: commends in Python mode Date: Tue, 26 Dec 2006 00:30:49 +0200 Message-ID: <200612260030.49345.pogonyshev@gmx.net> NNTP-Posting-Host: dough.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1167085542 30834 80.91.229.10 (25 Dec 2006 22:25:42 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 25 Dec 2006 22:25:42 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Dec 25 23:25:41 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by dough.gmane.org with esmtp (Exim 4.50) id 1GyyGH-0001Yi-BX for ged-emacs-devel@m.gmane.org; Mon, 25 Dec 2006 23:25:37 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GyyGG-00087c-Qo for ged-emacs-devel@m.gmane.org; Mon, 25 Dec 2006 17:25:36 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GyyG5-00087F-41 for emacs-devel@gnu.org; Mon, 25 Dec 2006 17:25:25 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GyyG3-000870-I1 for emacs-devel@gnu.org; Mon, 25 Dec 2006 17:25:24 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GyyG3-00086x-DO for emacs-devel@gnu.org; Mon, 25 Dec 2006 17:25:23 -0500 Original-Received: from [213.165.64.20] (helo=mail.gmx.net) by monty-python.gnu.org with smtp (Exim 4.52) id 1GyyG3-00050m-2z for emacs-devel@gnu.org; Mon, 25 Dec 2006 17:25:23 -0500 Original-Received: (qmail invoked by alias); 25 Dec 2006 22:25:22 -0000 Original-Received: from unknown (EHLO [80.94.230.23]) [80.94.230.23] by mail.gmx.net (mp042) with SMTP; 25 Dec 2006 23:25:22 +0100 X-Authenticated: #16844820 Original-To: emacs-devel@gnu.org User-Agent: KMail/1.7.2 Content-Disposition: inline X-Y-GMX-Trusted: 0 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:64261 Archived-At: Try inputting the following in a Python mode buffer: test = (1, # Apostrophe: ' 2) You can see that the apostrophe breaks sexp scanning (the closing paren is not paired with the opening) and probably more. This doesn't happen in e.g. C-mode, so it is a problem of Python mode. Paul