Path: csiph.com!au2pb.net!feeder.erje.net!1.eu.feeder.erje.net!newsfeed0.kamp.net!newsfeed.kamp.net!fu-berlin.de!uni-berlin.de!not-for-mail From: Chris Angelico Newsgroups: comp.lang.python Subject: Re: import logging raise NotImplementedError Date: Wed, 25 Nov 2015 19:51:48 +1100 Lines: 22 Message-ID: References: <3p4xjG0FzSz5vN9@dovecot03.posteo.de> <3p5FzJ4R4Yz5vNN@dovecot03.posteo.de> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: news.uni-berlin.de db1jl5JbHlGjdlnT3hKanQNto4JKynjCXp+4FugQ697A== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'received:209.85.223': 0.03; 'repository': 0.05; 'cc:addr:python-list': 0.09; 'to)': 0.09; 'python': 0.10; 'python.': 0.11; 'wed,': 0.15; 'ah!': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'install"': 0.16; 'pypi.': 0.16; 'python;': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'subject:import': 0.16; 'wrote:': 0.16; 'directory.': 0.18; 'why.': 0.18; '2015': 0.20; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'prevent': 0.20; 'header:In- Reply-To:1': 0.24; 'install': 0.25; 'appear': 0.26; 'installed': 0.26; 'chris': 0.26; 'supported': 0.27; 'logging': 0.27; 'message- id:@mail.gmail.com': 0.27; 'issue,': 0.27; 'reporting': 0.29; "i'd": 0.31; 'doubt': 0.33; 'received:google.com': 0.35; 'nov': 0.35; 'something': 0.35; 'needed': 0.36; 'received:209.85': 0.36; 'pm,': 0.36; 'subject:: ': 0.37; 'really': 0.37; 'version': 0.38; 'received:209': 0.38; 'your': 0.60; 'chrisa': 0.84; 'to:none': 0.91; 'subject:skip:N 10': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=uUTsm3hQ6I/cHceoPEQnTnoOpW0oLh2dWtww3IgqSKc=; b=RYMPy5sYrlz+49xqagIFPUIfMXnxlBVsr6yi83XPK3DBhWVfaBhy7hZ1WtZ6cnnpgo FJ+xP0DeT3SU9Yav6s46wxohvkiEg7pPkbhQe3bkEb+Ri1E90Bm+bHzm+JnNkyxmNhKs UrpWXzVNbTUI9eMeBDPVrA3uehSzfMZzLVlI97BhX7qqOBKq5UkevOafSLqZuCqB9Saz +UyKa3izNlOBzGN9EOMC9uIzlOBRq+NF/PaCssEPGE1z0g/pnngVLPXjUmYun4reDCXT kX3kwNc2YYhgWTAhTQMMiRD2hc8NppYt3jwY0tmGD5+wfGp4xgVO/et59s8K9nRi/89O 73Vw== X-Received: by 10.107.3.163 with SMTP id e35mr31733205ioi.157.1448441508896; Wed, 25 Nov 2015 00:51:48 -0800 (PST) In-Reply-To: <3p5FzJ4R4Yz5vNN@dovecot03.posteo.de> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:99424 On Wed, Nov 25, 2015 at 7:40 PM, wrote: > On 2015-11-25 09:00 Chris Angelico wrote: >> You appear to have installed it into your Python 3.4's package > > No really me. I found out who. > > I installed "ebscopy" from its GitHub repository with > "sudo pip3 ./setup.py install" > And this (tried to) install(ed) "logging" from PyPi. Don't know why. > > I just removed the egg-file in the dist-utils directory. After that > everything works fine. Ah! That would do it, yes. (Incidentally, 'pip install ebscopy' would be how I'd do it.) I think this is something that would merit reporting upstream. Neither datetime nor logging is needed in any even half-way recent Python; removing them would prevent your issue, and I doubt it'll cause problems on any supported version of Python. ChrisA