0
votes
1answer
33 views

Python indentation error after try:

I have a problem, whenever I try to run this python script on an Raspberry PI: import socket import sys # Create a TCP/IP socket sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # Bind the ...
2
votes
2answers
60 views

Auto indent doesn't work when using vim coding python

I want to use vim to write python code but there is a problem on auto indention. First I downloaded the latest python.vim from http://www.vim.org/scripts/script.php?script_id=790 and putted it in the ...
1
vote
3answers
39 views

unident doesnt match any outer indent level, what do i need to change? [closed]

def update(self): # Get the current mouse position. This returns the position # as a list of two numbers pos = pygame.mouse.get_pos() # Fetch the x and y out of the ...
0
votes
2answers
82 views

Indentation error in python random numbers game

This is a simple little guessing game that i've edited. I know that it should run fine, but it keeps giving me an error. On line 12 it says "unindent does not match any outer indentation level" with ...
0
votes
0answers
69 views

Identation Error - OpenErp Python

I got this error after adding a function field in my module OpenERP Server Error Client Traceback (most recent call last): File "C:\Program Files\OpenERP ...
0
votes
2answers
70 views

Python expected indent error

Here is a picture of my problem in idle it says that I have an expected indent error and can't figure out what to do.
2
votes
0answers
139 views

Python IDLE: auto-indent is too large? [closed]

This isn't the same as the question "Changing indentation in Python's IDLE"1. When writing code IDLE is supposed to indent for the user when you type a line ending in a colon. But in the current ...
0
votes
2answers
223 views

Indentation Error: Vim creates invisible indents

As you may be able to see (from the screenshot below) there is an additional level of indentation that I did not make and there are no tabs or spaces corresponding to it. Retyping the code does not ...
0
votes
1answer
201 views

Python indentation in Emacs

Boring of googling this question - how to set indentation offset for python in emacs? Tried many variants, but none helps. http://jomp.ru/@s.png - python mode?
2
votes
2answers
270 views

Vim python indenting changes code semantics

I'm trying to learn vim :-) Having some real trouble with auto-indent changing the meaning of my python code. Is there any way to get the goodness of autoindent without running into behaviors like ...
1
vote
2answers
2k views

“unexpected indent” error when using notepad++ for creating django function

I am following this book to learn django using notepad++, something interesting happens, when I type the function using notepad++ for the following script: def current_datetime(request): now = ...
0
votes
2answers
113 views

Force an indent in Python code for organizational purposes

Is there a way to force an indent in Python? I kind of want it for the sake of making the code look organized. As an example: # How it looks now class Bro: def __init__(self): self.head = ...
0
votes
5answers
112 views

Python is telling me an indention is expected where I put one

OK, here's a piece of the script: def start(): print "While exploring the ruins of a recently abandoned castle you stumble apon the entrance to what appears to be a dungeon. You are carrying on ...
1
vote
6answers
4k views

indent python file (with pydev) in eclipse

I'm a newbie in eclipse. I want to indent all the lines of my code and formatting the open file by pressing a shortcut or something like that... I know the CTRL+SHIFT+F (as it actually doesn't work in ...
-3
votes
2answers
278 views

Python indent error. I can't figure out what's wrong here

I'm using notepad++ which shows the different indents, etc. I keep getting an error code on line 26: return firstNum, secondNum, thirdNum Here's the full code. If anyone can see what's going on ...
-4
votes
1answer
201 views

Super-annoying indent error (Python) [closed]

the classic unexpected indent error. Here's the relevant code. The question is how do I fix it? def getNum(): firstNum = input("Please state what number to start at: ") secondNum ...
0
votes
1answer
201 views

What's wrong in python script?

What's wrong in python script? Code: import os import shutil import getpass os.mkdir("C:\\dtmp") shutil.copy("C:\\path\\to\\bb-freeze-script.py","C:\\dtmp") os.chdir("C:\\dtmp") ...
1
vote
3answers
3k views

return outside function, or unexpected indent

I have this: if colorkey is not None: if colorkey is -1: colorkey = image.get_at((0,0)) image.set_colorkey(colorkey, RLEACCEL) return image, image.get_rect() It tells me that ...
3
votes
8answers
3k views

Automatic indentation for Python in Notepad++

I've been googling lots and this is getting really frustrating. It doesn't act like idle. Example: else: name = 'World' print 'Howdy', name print 'yay' but in Notepad++ else: # i ...
1
vote
3answers
3k views

Why is the “else” line invalid syntax?

I'm having this error: File "zzz.py", line 70 else: ^ SyntaxError: invalid syntax The line which causes the problem is marked with a comment in the code: def FileParse(self, ...
14
votes
9answers
4k views

Code-style for indent of multi-line IF statement in Python? [duplicate]

When indenting long if conditions, you usually do something like this (actually, PyDev indents like that): if (collResv.repeatability is None or collResv.somethingElse): collResv.rejected = ...
2
votes
2answers
2k views

Python: I'm getting an 'indented block' error on the last 3 quotes (“”") of my comments under functions. What's up?

Super odd, no? The offending code: def main(): """ main function """ # Argument handling args = sys.argv[1:] if not args: print "usage is: ... The third quote is where I get ...
0
votes
1answer
787 views

Easiest way to reindent / tidy Python code in Coda?

Anyone have a clever way of quickly fixing indentation problems in Python documents in the Coda editor for Mac? Some have said that reindent.py is the way to go, but it doesn't even ship with all ...
0
votes
3answers
3k views

Why Unexpected Indent?

Why does this happen? def LoadPackageList(): try: #Attempts to load package list... Adds each neccessary attribute into array print("Loading Package List... please wait") ...
4
votes
1answer
1k views

How do I parse indents and dedents with pyparsing?

Here is a subset of the Python grammar: single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE stmt: simple_stmt | compound_stmt simple_stmt: small_stmt (';' small_stmt)* [';'] NEWLINE ...