Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.057 X-Spam-Evidence: '*H*': 0.89; '*S*': 0.00; 'subject:error': 0.03; 'cc:addr:python-list': 0.11; 'def': 0.12; '214,': 0.16; 'terribly': 0.16; 'wayne': 0.16; 'fix': 0.17; 'wrote:': 0.18; 'wed,': 0.18; 'appears': 0.22; 'comfortable': 0.22; 'cc:addr:python.org': 0.22; 'header:User-Agent:1': 0.23; 'error': 0.23; '(or': 0.24; 'cc:2**0': 0.24; 'cc:no real name:2**0': 0.24; 'header:In-Reply-To:1': 0.27; 'raise': 0.29; 'anyone': 0.31; 'file': 0.32; 'guess': 0.33; 'something': 0.35; 'editor': 0.35; 'but': 0.35; 'skip:" 50': 0.36; 'charset:us-ascii': 0.36; 'skip:- 20': 0.37; 'whatever': 0.38; 'anything': 0.39; 'how': 0.40; 'tell': 0.60; "you're": 0.61; 'skip:n 10': 0.64; 'to:addr:gmail.com': 0.65; 'find.': 0.84; 'subject:know': 0.84; '2013,': 0.91; 'subject: ? ': 0.91; 'subject:Don': 0.91 Date: Thu, 18 Apr 2013 08:44:53 -0500 (CDT) From: Wayne Werner X-X-Sender: wayne@gilgamesh To: someone Subject: Re: anyone know pandas ? Don't understand error: NotImplementedError... In-Reply-To: References: User-Agent: Alpine 2.02 (DEB 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 28 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1366292703 news.xs4all.nl 2310 [2001:888:2000:d::a6]:38615 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:43825 On Wed, 17 Apr 2013, someone wrote: > File "/usr/lib/pymodules/python2.7/pandas/tseries/offsets.py", line 214, in > rule_code > raise NotImplementedError > NotImplementedError > -------------------- > > Can anyone tell why this error appears and how to fix it? I don't know anything about pandas, but my recommendation? $ vim /usr/lib/pymodules/python2.7/pandas/tseries/offsets.py (or nano or emacs - whatever editor you're comfortable with). Go to line 214, and take a look-see at what you find. My guess is it will be something like: def rule_code(): raise NotImplementedError() Which is terribly unhelpful. HTH, Wayne