From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eric Hanchrow Newsgroups: gmane.emacs.devel Subject: python.el: why remove '' from sys.path? Date: Fri, 13 Mar 2009 11:40:54 -0700 Message-ID: <36366a980903131140p7a66c5a2ncabec4df11edcce1@mail.gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1236969727 18794 80.91.229.12 (13 Mar 2009 18:42:07 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 13 Mar 2009 18:42:07 +0000 (UTC) To: romain@orebokech.com, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Mar 13 19:43:23 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1LiCLg-0002ro-FF for ged-emacs-devel@m.gmane.org; Fri, 13 Mar 2009 19:43:12 +0100 Original-Received: from localhost ([127.0.0.1]:36327 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LiCKK-0000Iy-HJ for ged-emacs-devel@m.gmane.org; Fri, 13 Mar 2009 14:41:48 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LiCJZ-0008Aq-Fp for emacs-devel@gnu.org; Fri, 13 Mar 2009 14:41:01 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LiCJV-00086U-35 for emacs-devel@gnu.org; Fri, 13 Mar 2009 14:41:01 -0400 Original-Received: from [199.232.76.173] (port=38376 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LiCJU-00086F-QF for emacs-devel@gnu.org; Fri, 13 Mar 2009 14:40:56 -0400 Original-Received: from mail-gx0-f160.google.com ([209.85.217.160]:45973) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LiCJU-0007T0-GA for emacs-devel@gnu.org; Fri, 13 Mar 2009 14:40:56 -0400 Original-Received: by gxk4 with SMTP id 4so1687307gxk.18 for ; Fri, 13 Mar 2009 11:40:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=LGEKWZcotUiQ/KGa4nRIY2jKKtsp0W+R0HazJzgg58w=; b=yDfKL06FhMK46EAsC/vrc9ZagS7slxC5g2HWot01/Y1oaptQb9/KPxVhmLxSAEBAkk uSpX1oHhkG1JF4NxCaPiPiBcpU5zTwchygoW2vyh+4yfh5hRzN1iS8ejENZGpECWsvu3 oklJwpgNiCL5MCoMQetcXvTyhgei3GePtsP58= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=Er3yUjTLOH7UFKgPoG/IUV4Fyf5SGZuIG+hMCUrUnqHjLFaqoyK4CC0h4CbeEHML3k CiSFN52rSo3kcFvNdKxTyVSXvoKGC4CIs0Hc8jk/17MHM941O8GlHtuN1CyL6sWJHKnu o/pUqZtrTVxtAT4gw2WRdiy5q+MyYZ0xDq7oM= Original-Received: by 10.142.174.18 with SMTP id w18mr755532wfe.239.1236969654894; Fri, 13 Mar 2009 11:40:54 -0700 (PDT) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) 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:109603 Archived-At: I just noticed that my inferior python refuses to load modules from the current directory, and traced the cause to this commit: commit 52ebf5328eaae31b69a02de160c93f6168921fc2 Author: Romain Francoise Date: Sun Aug 24 19:47:07 2008 +0000 (run-python): Remove '' from sys.path. Can you explain why you removed the current directory from sys.path? I think it'd be more convenient to have it present.