Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed2.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.027 X-Spam-Evidence: '*H*': 0.95; '*S*': 0.00; 'interpreter.': 0.07; 'finished.': 0.09; 'cc:addr:python-list': 0.11; 'python': 0.11; '23,': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'log.': 0.16; 'subject:when': 0.16; 'exception': 0.16; 'skip:# 20': 0.16; 'wrote:': 0.18; 'seems': 0.21; 'cc:addr:python.org': 0.22; 'error': 0.23; 'mon,': 0.24; 'cc:2**0': 0.24; 'code:': 0.26; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'dec': 0.30; 'message-id:@mail.gmail.com': 0.30; 'getting': 0.31; 'quite': 0.32; 'says': 0.33; 'running': 0.33; 'maybe': 0.34; 'subject:with': 0.35; 'received:google.com': 0.35; 'possible': 0.36; 'project': 0.37; 'server': 0.38; 'sure': 0.39; 'blank': 0.60; 'full': 0.61; "you're": 0.61; 'back': 0.62; 'subject:try': 0.84; 'to:none': 0.92; 'lucky': 0.93; '2013': 0.98 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=ms3xlxjHjQKEUxxTSRTlnPE5QHZsY999iDS5ZD93q+Q=; b=OUjxYkuY+EISqq3nxCeNqT2DqLiEDGhYxWxVJvLbrmie1BjlqtxkU3j3YSOy/KmPdG Rgi7/WhP4j/2BRUS4bU45NZ//tIb4xM8dSei+HNey+QEEUXuBtg6mKyGtwQXqtCg/Enf Bida+z2Gc56Sdwnzw9rivyNktOrsSahG+29ccmaq0OoQWfSHpjSYUnt+2u6NXUWa4WAu tYJ2mTRgrmGYG8bXe+b5smwFZFPnS0RK/R6I+MO3Luq7q8IsSsUCHmyX8otA4Hgf5bKL 6U5MU8fsvCLX1XmN4asRZhgfV58YbMBpvY5qZBziSIgsM/kYmhkmdxmhH4qYLNpahIeL Vh4Q== MIME-Version: 1.0 X-Received: by 10.68.212.163 with SMTP id nl3mr21529919pbc.25.1387735093983; Sun, 22 Dec 2013 09:58:13 -0800 (PST) In-Reply-To: References: Date: Mon, 23 Dec 2013 04:58:13 +1100 Subject: Re: BLANK PAGE when i try Filtering Adsense with abpy From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 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: 15 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1387735106 news.xs4all.nl 2963 [2001:888:2000:d::a6]:59374 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:62536 On Mon, Dec 23, 2013 at 4:20 AM, em rexhepi wrote: > I have a python 3.3 project to be finished. ... > > My code: > #!/usr/local/bin/python3.1 Your shebang says 3.1, are you sure that's correct? Maybe it's not finding the right interpreter. If this is running as CGI, which it seems to be, check your server error logs. It's quite possible you're getting back a blank page because something's bombing, in which case - if you're lucky - there'll be a full exception traceback in the log. ChrisA