473,416 Members | 1,542 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,416 software developers and data experts.

Difficulty with "inconsistent use of tabs and spaces in indentation"in file called <string>

I've been trying for a couple days to build a program using pyObjC on
a mac, I'm stuck on this error:

<string>: inconsistent use of tabs and spaces in indentation
Traceback (most recent call last):
File "setup.py", line 59, in ?
setup(**setup_options)
File "/Library/Frameworks/Python.framework/Versions/2.4//lib/
python2.4/distutils/core.py", line 149, in setup
dist.run_commands()
File "/Library/Frameworks/Python.framework/Versions/2.4//lib/
python2.4/distutils/dist.py", line 946, in run_commands
self.run_command(cmd)
File "/Library/Frameworks/Python.framework/Versions/2.4//lib/
python2.4/distutils/dist.py", line 966, in run_command
cmd_obj.run()
File "/Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages/py2app/py2app/build_app.py", line 342, in run
self.initialize_plist()
File "/Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages/py2app/py2app/build_app.py", line 415, in
initialize_plist
plist = self.get_default_plist()
File "/Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages/py2app/py2app/build_app.py", line 294, in
get_default_plist
version = find_version(target.script)
File "/Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages/py2app/py2app/util.py", line 13, in
find_version
ast = compiler.parseFile(fn)
File "/Library/Frameworks/Python.framework/Versions/2.4//lib/
python2.4/compiler/transformer.py", line 48, in parseFile
return parse(src)
File "/Library/Frameworks/Python.framework/Versions/2.4//lib/
python2.4/compiler/transformer.py", line 52, in parse
return Transformer().parsesuite(buf)
File "/Library/Frameworks/Python.framework/Versions/2.4//lib/
python2.4/compiler/transformer.py", line 129, in parsesuite
return self.transform(parser.suite(text))
File "<string>", line 628
else:
^
SyntaxError: invalid syntax

I don't even know which file has the indentation problem.

Any thoughts.
Ian Bloom
Feb 11 '08 #1
12 7510
En Mon, 11 Feb 2008 13:34:17 -0200, ibloom <ia*******@gmail.comescribi�:
I've been trying for a couple days to build a program using pyObjC on
a mac, I'm stuck on this error:

<string>: inconsistent use of tabs and spaces in indentation
Traceback (most recent call last):
File "setup.py", line 59, in ?
setup(**setup_options)
File "/Library/Frameworks/Python.framework/Versions/2.4//lib/
python2.4/distutils/core.py", line 149, in setup
dist.run_commands()
File "/Library/Frameworks/Python.framework/Versions/2.4//lib/
python2.4/distutils/dist.py", line 946, in run_commands
self.run_command(cmd)
File "/Library/Frameworks/Python.framework/Versions/2.4//lib/
python2.4/distutils/dist.py", line 966, in run_command
cmd_obj.run()
File "/Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages/py2app/py2app/build_app.py", line 342, in run
self.initialize_plist()
File "/Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages/py2app/py2app/build_app.py", line 415, in
initialize_plist
plist = self.get_default_plist()
File "/Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages/py2app/py2app/build_app.py", line 294, in
get_default_plist
version = find_version(target.script)
File "/Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages/py2app/py2app/util.py", line 13, in
find_version
ast = compiler.parseFile(fn)
Put a print statement just above that line, to see which file triggers the
error.

--
Gabriel Genellina

Feb 11 '08 #2
On Feb 11, 9:34*am, ibloom <ianmbl...@gmail.comwrote:
I've been trying for a couple days to build a program using pyObjC on
a mac, I'm stuck on this error:

<string>: inconsistent use of tabs and spaces in indentation
Traceback (most recent call last):
* File "setup.py", line 59, in ?
* * setup(**setup_options)
* File "/Library/Frameworks/Python.framework/Versions/2.4//lib/
python2.4/distutils/core.py", line 149, in setup
* * dist.run_commands()
* File "/Library/Frameworks/Python.framework/Versions/2.4//lib/
python2.4/distutils/dist.py", line 946, in run_commands
* * self.run_command(cmd)
* File "/Library/Frameworks/Python.framework/Versions/2.4//lib/
python2.4/distutils/dist.py", line 966, in run_command
* * cmd_obj.run()
* File "/Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages/py2app/py2app/build_app.py", line 342, in run
* * self.initialize_plist()
* File "/Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages/py2app/py2app/build_app.py", line 415, in
initialize_plist
* * plist = self.get_default_plist()
* File "/Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages/py2app/py2app/build_app.py", line 294, in
get_default_plist
* * version = find_version(target.script)
* File "/Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages/py2app/py2app/util.py", line 13, in
find_version
* * ast = compiler.parseFile(fn)
* File "/Library/Frameworks/Python.framework/Versions/2.4//lib/
python2.4/compiler/transformer.py", line 48, in parseFile
* * return parse(src)
* File "/Library/Frameworks/Python.framework/Versions/2.4//lib/
python2.4/compiler/transformer.py", line 52, in parse
* * return Transformer().parsesuite(buf)
* File "/Library/Frameworks/Python.framework/Versions/2.4//lib/
python2.4/compiler/transformer.py", line 129, in parsesuite
* * return self.transform(parser.suite(text))
* File "<string>", line 628
* * else:
* * ^
SyntaxError: invalid syntax

I don't even know which file has the indentation problem.
Maybe none of them do. An indentation error isn't necessarily
due to indentation. I just saw one last Saturday, but I don't
remember what caused it other than it wasn't indentation.
Something was open that wasn't closed properly, such as
matching () or [] or ''. Unfortunately, I can't reproduce it.
Examine the code carefully in the sections before the actual
reported error. You may be seeing a symptom rather than the cause.
>
Any thoughts.
Ian Bloom
Feb 11 '08 #3
My main problem is, I don't know where to find the file:
File "<string>", line 628

As in I don't know what code it is refering to by <string??
It isn't code that I wrote, its something from python or pyObjC

Ian Bloom
Feb 12 '08 #4
ibloom wrote:
My main problem is, I don't know where to find the file:
File "<string>", line 628

As in I don't know what code it is refering to by <string??
It isn't code that I wrote, its something from python or pyObjC
You'll typically see that in code that's being executed from a
dynamically created string in the code, which is going to make it *very*
difficult to debug.
>>exec "1/0"
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<string>", line 1, in <module>
ZeroDivisionError: integer division or modulo by zero
>>eval('1/0')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<string>", line 1, in <module>
ZeroDivisionError: integer division or modulo by zero
>>>
regards
Steve
--
Steve Holden +1 571 484 6266 +1 800 494 3119
Holden Web LLC http://www.holdenweb.com/

Feb 12 '08 #5
En Mon, 11 Feb 2008 21:57:00 -0200, ibloom <ia*******@gmail.comescribió:
My main problem is, I don't know where to find the file:
File "<string>", line 628

As in I don't know what code it is refering to by <string??
It isn't code that I wrote, its something from python or pyObjC
Mmm, didn't you get my previous post? The call is inside the py2app
package. Quoting myself:
><string>: inconsistent use of tabs and spaces in indentation
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages/py2app/py2app/util.py", line 13, in
find_version
ast = compiler.parseFile(fn)

Put a print statement just above that line, to see which file triggers
the
error.
In case it wasn't clear, modify the file
/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages/py2app/py2app/util.py,
around line 13, in the find_version function, adding this print statement:

print 'about to compile', fn
ast = compiler.parseFile(fn)

The last line printed (in case there are many) should be the offending
filename.

Of course you don't have to keep the modified library, this is just to
detect which file triggers the error. You should report this to the py2app
developers as well.

--
Gabriel Genellina

Feb 12 '08 #6
On Feb 11, 9:10*pm, "Gabriel Genellina" <gagsl-...@yahoo.com.ar>
wrote:
En Mon, 11 Feb 2008 21:57:00 -0200, ibloom <ianmbl...@gmail.comescribió:
My main problem is, I don't know where to find the file:
* File "<string>", line 628
As in I don't know what code it is refering to by <string??
It isn't code that I wrote, its something from python or pyObjC

Mmm, didn't you get my previous post? The call is inside the py2app *
package. Quoting myself:
<string>: inconsistent use of tabs and spaces in indentation
Traceback (most recent call last):
* File "/Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages/py2app/py2app/util.py", line 13, in
find_version
* * ast = compiler.parseFile(fn)
Put a print statement just above that line, to see which file triggers *
the
error.

In case it wasn't clear, modify the file *
/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packag es/py2app/py2app/util.py, *
around line 13, in the find_version function, adding this print statement:

* * *print 'about to compile', fn
* * *ast = compiler.parseFile(fn)

The last line printed (in case there are many) should be the offending *
filename.

Of course you don't have to keep the modified library, this is just to *
detect which file triggers the error. You should report this to the py2app*
developers as well.

--
Gabriel Genellina
You are right, I didn't understand. I'll try it. Thank you.

Ian Bloom
Feb 12 '08 #7
On Feb 11, 9:10*pm, "Gabriel Genellina" <gagsl-...@yahoo.com.ar>
wrote:
En Mon, 11 Feb 2008 21:57:00 -0200, ibloom <ianmbl...@gmail.comescribió:
My main problem is, I don't know where to find the file:
* File "<string>", line 628
As in I don't know what code it is refering to by <string??
It isn't code that I wrote, its something from python or pyObjC

Mmm, didn't you get my previous post? The call is inside the py2app *
package. Quoting myself:
<string>: inconsistent use of tabs and spaces in indentation
Traceback (most recent call last):
* File "/Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages/py2app/py2app/util.py", line 13, in
find_version
* * ast = compiler.parseFile(fn)
Put a print statement just above that line, to see which file triggers *
the
error.

In case it wasn't clear, modify the file *
/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packag es/py2app/py2app/util.py, *
around line 13, in the find_version function, adding this print statement:

* * *print 'about to compile', fn
* * *ast = compiler.parseFile(fn)

The last line printed (in case there are many) should be the offending *
filename.

Of course you don't have to keep the modified library, this is just to *
detect which file triggers the error. You should report this to the py2app*
developers as well.

--
Gabriel Genellina
Gabriel, your the master.
Of course I didn't understand that py2app was trying to compile my own
python source code and when I switched to Xcode as my new editor, I
started mixing in tabs. So <stringwas in fact my code. All I had to
do was change my preferences in Xcode, to generate spaces instead of
tabs, remove all of the offending tabs and voila. You've ended days of
frustrations. Thank you.

Ian Bloom
Feb 13 '08 #8
ibloom wrote:
Of course I didn't understand that py2app was trying to compile my own
python source code and when I switched to Xcode as my new editor, I
started mixing in tabs. So <stringwas in fact my code.
Seems like py2app could be a bit friendlier about reporting
syntax errors in the code it's trying to compile!

--
Greg
Feb 13 '08 #9
En Tue, 12 Feb 2008 22:57:01 -0200, ibloom <ia*******@gmail.comescribi�:
On Feb 11, 9:10Â*pm, "Gabriel Genellina" <gagsl-...@yahoo.com.ar>
wrote:
>>
><string>: inconsistent use of tabs and spaces in indentation
Traceback (most recent call last):
Â* File "/Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages/py2app/py2app/util.py", line 13, in
find_version
Â* Â* ast = compiler.parseFile(fn)
Put a print statement just above that line, to see which file >
triggers the error.

Gabriel, your the master.
Of course I didn't understand that py2app was trying to compile my own
python source code and when I switched to Xcode as my new editor, I
started mixing in tabs. So <stringwas in fact my code. All I had to
do was change my preferences in Xcode, to generate spaces instead of
tabs, remove all of the offending tabs and voila. You've ended days of
frustrations. Thank you.
Glad to be of any help. Note that all the clues were on the traceback.
When people here insist that all error reports should come with the
complete stack trace, it isn't because they want to be annoying, but
because it's really useful...

--
Gabriel Genellina

Feb 13 '08 #10
En Tue, 12 Feb 2008 22:57:01 -0200, ibloom <ia*******@gmail.comescribi�:
On Feb 11, 9:10Â*pm, "Gabriel Genellina" <gagsl-...@yahoo.com.ar>
wrote:
>>
><string>: inconsistent use of tabs and spaces in indentation
Traceback (most recent call last):
Â* File "/Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages/py2app/py2app/util.py", line 13, in
find_version
Â* Â* ast = compiler.parseFile(fn)
Put a print statement just above that line, to see which file >
triggers the error.

Gabriel, your the master.
Of course I didn't understand that py2app was trying to compile my own
python source code and when I switched to Xcode as my new editor, I
started mixing in tabs. So <stringwas in fact my code. All I had to
do was change my preferences in Xcode, to generate spaces instead of
tabs, remove all of the offending tabs and voila. You've ended days of
frustrations. Thank you.
Glad to be of any help. Note that all the clues were on the traceback.
When people here insist that all error reports should come with the
complete stack trace, it isn't because they want to be annoying, but
because it's really useful...

--
Gabriel Genellina

Feb 13 '08 #11
En Wed, 13 Feb 2008 03:01:31 -0200, greg <gr**@cosc.canterbury.ac.nz>
escribi�:
ibloom wrote:
>Of course I didn't understand that py2app was trying to compile my own
python source code and when I switched to Xcode as my new editor, I
started mixing in tabs. So <stringwas in fact my code.

Seems like py2app could be a bit friendlier about reporting
syntax errors in the code it's trying to compile!
Yes, but the standard "compiler" package (used by py2app) is somewhat
guilty too. The parseFile function is called with a file name, but such
info is lost and the filename isn't used in the error messages. Compare
with the builtin "compile" function, which *does* use the supplied file
name to report meaningful errors.

--
Gabriel Genellina

Feb 13 '08 #12
Gabriel Genellina a écrit :
(snip)
Note that all the clues were on the traceback.
When people here insist that all error reports should come with the
complete stack trace, it isn't because they want to be annoying, but
because it's really useful...
+1 QOTW
Feb 13 '08 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: vijay | last post by:
Hello, As the subject suggests, I need to print the string in the reverse order. I made the following program: # include<stdio.h> struct llnode { char *info;
0
by: Kyle Blaney | last post by:
Is there a way to control how the "Edit->Advanced->Format Selection" command formats long lines? In particular, I want the command to indent long lines differently than new scope. By default, the...
1
by: Charlie | last post by:
Hi: Is it possible to apply formatting to above statements which insert field values into HTML when binding to a datasource using Repeater control? For example, I would like to trim trailing...
3
by: MLH | last post by:
If I run ?", ","" in the immediate window, I get a comma followed by 13 spaces. It is difficult for me to understand this.
4
by: Robert Bravery | last post by:
HI all, I have imported string data that contains numerical values. The negatives are reporesented in round braces () as in (192) representing -192. How can I convert thin string into a negative...
2
by: keithtracypierce | last post by:
1)Access2003, beating my head against the wall, every other iteration is "can't find macro Upshift" followed by carefully verifying that no blank properties have been entered. Making NO changes at...
6
by: Sile | last post by:
Hello, I'm trying to get f2py working from the command line on windows XP. I have mingw32 as my C complier (after some advice on a previous thread) and Compaq Visual Fortran 6.5. Changing my C...
19
by: FAQ server | last post by:
----------------------------------------------------------------------- FAQ Topic - I have <a href="javascript:somefunction()"what ... ?...
1
by: craigslist.jg | last post by:
Basically, I want to do this in Javascript: I want to convert a string such as: Cities New York Address 1 Address 2 Address 3
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.