Tagged Questions

A syntax error occurs when a program does not follow the syntactical rules of the programming language.

learn more… | top users | synonyms

26
votes
5answers
319 views

Why is `continue` not allowed in a `finally` clause in Python?

The following code raises a syntax error: >>> for i in range(10): ... print i ... try: ... pass ... finally: ... continue ... print i ... File ...
11
votes
3answers
644 views

JavaScript: {}==false is a SyntaxError?

In Firefox 3.5, I type this in the Firebug console : false=={} // => evals to false {}==false // syntax error What is the explanation for this ?
9
votes
2answers
204 views

Creating a list with >255 elements

Ok, so I'm writing some python code (I don't write python much, I'm more used to java and C). Anyway, so I have collection of integer literals I need to store. (Ideally >10,000 of them, currently ...
8
votes
2answers
94 views

build dynamic array in php

i have an assignment i have to finish for school using arrays and objects. i need to create an array using a object using different format/structure i have: $t = object() $t > user = object() $t ...
8
votes
1answer
81 views

String Concatenation Error

I ran into a syntax error. I accept that it's a syntax error, but I'm somewhat curious as to why it's a syntax error. This works exactly as you'd expect it to: (0..9).each { |n| puts n.to_s + "^2 = ...
8
votes
3answers
317 views

Why do parentheses around lambda statement cause syntax error?

I'm looking for a good explanation why one piece of code fails to compile and the other compiles just fine. Fails: richTextBox1.Invoke(new MethodInvoker((() => { richTextBox1.AppendText("test"); ...
8
votes
3answers
338 views

Java generics: Illegal forward reference

Given a generic interface interface Foo<A, B> { } I want to write an implementation that requires A to be a subclass of B. So I want to do class Bar<A, B super A> implements Foo<A, ...
6
votes
4answers
61 views

Am I escaping the strings incorrectly in JavaScript?

I am trying to create a clickable link in javascript var content = '<a href=\"#\" onclick=\"displayContent(\"TEST\")\">Whatever</a>'; $("#placeHolder").html(content); but I keep ...
6
votes
2answers
125 views

Unbinding a name referenced by an enclosing scope

From the Python Language Reference (v 3.1, see here - http://docs.python.org/py3k/reference/executionmodel.html#naming-and-binding ): It is illegal to unbind a name referenced by an enclosing ...
6
votes
2answers
190 views

Why doesn't {$ifopt FINITEFLOAT ON} compile?

I have the construct: {$ifopt FINITEFLOAT ON} {$message 'FINITEFLOAT option ON' } {$else } {$message 'FINITEFLOAT option OFF' } {$endif } in my source and it won't compile! It's got to be ...
6
votes
2answers
163 views

Strange Syntax Parsing Error in Python?

Am I missing something here? Why shouldn't the code under the "Broken" section work? I'm using Python 2.6. #!/usr/bin/env python def func(a,b,c): print a,b,c #Working: Example #1: p={'c':3} ...
5
votes
3answers
144 views

How to define scala type for no argument function?

This works def func(f: => Int) = f This dosn't (inside class for example) type EmptyFunct = => Int or type EmptyFunct = (=> Int) Scala version 2.9 Two questions: Why dosn't syntax ...
5
votes
1answer
154 views

Ruby Block Syntax Error [closed]

Possible Duplicate: Ruby block and unparenthesized arguments I'm not sure I understand this syntax error. I'm using Carrierwave to manage some file uploads in a Rails app, and I seem to be ...
5
votes
3answers
5k views

Chrome: Uncaught SyntaxError: Unexpected end of input

I have this project that i been working on its still in development. but i just uploaded it to a free host just as a test run before i get a paid host. Here is the link http://laurent.0sites.net/. ...
5
votes
4answers
137 views

Whats wrong with this Data Explorer SQL query?

I am trying to write a How much did I type? query on Stack* Data Explorer. Modifying an existing query got me this far: -- How much did I type? DECLARE @UserId int = ##UserId## select ...
5
votes
3answers
2k views

Syntax error when using “with open” in Python (python newbie)

[root@234571-app2 git]# ./test.py File "./test.py", line 4 with open("/home/git/post-receive-email.log",'a') as log_file: ^ SyntaxError: invalid syntax The code looks like this: ...
5
votes
1answer
354 views

Syntax error with mySQL query function to convert decimal grade to a letter grade

I'm having troubles with a syntax error when trying to create a function in MySQL to convert a decimal grade into a letter grade. What could be the issue? ERROR 1064 (42000): You have an error in ...
4
votes
2answers
120 views

Why does my Javascript/jQuery work in Chrome and Safari but not firefox, IE9, or Opera?

http://jsfiddle.net/nicktheandroid/tfZns/4/ You grab the page and fling it up or down, kind of like an android or iphone. It works in Chrome and Safari (webkit) but it does not work in firefox, ie9 ...
4
votes
2answers
147 views

PYTHON-2.x Syntax error on line 1 but i don't see any?

the following file is located in this directory: /Users/whiteglider/Documents name of file: server.py this is my practice code which i just copied from ...
4
votes
4answers
79 views

Python dictionary get method in assignment

All, I'm looping over a dictionary and counting the values that occur. To do this, I'm using the get method in the assignment statement for another dictionary. This returns a syntax error "can't ...
4
votes
4answers
519 views

Why isn't “0f” treated as a floating point literal in C++?

Why isn't 0f treated as a floating point literal in C++? #include <iostream> using namespace std; int main(){ cout << 0f << endl; return 0; } Compiling the above gives me ...
4
votes
3answers
195 views

What are the implications of not closing a directory handle in Perl?

I recently inherited some code that someone else had written. I discovered that everywhere in the code that a directory was opened for reading, it was never closed because the original developer ...
4
votes
4answers
490 views

Ternary Operators in JavaScript Without an “Else”

I've been using them forever, and I love them. To me they see cleaner and i can scan faster, but ever since I've been using them i've always had to put null in the else conditions that don't have ...
4
votes
2answers
187 views

How to make this Python program compile?

I have this Python code: import re s = "aa67bc54c9" for t, n in re.findall(r"([a-z]+)([0-9]+)", s) And I get this error message when I try to run it: File "<stdin>", line 1 for t, ...
3
votes
4answers
50 views

Why do I get unexpected “(” token in following script?

Ok, I know what I am doing and I purposely want many multiple scripts like this to be on my page, because these scripts are not supposed to be evaluated on load, however if I set type="something else" ...
3
votes
2answers
82 views

Unexpected T_PAAMAYIM_NEKUDOTAYIM, expecting T_NS_Separator

I moved an application from an Ubuntu Narwhal Server to RHEL server over the weekend. My error log is full of the PHP errors in the subject line referencing the following function: function ...
3
votes
1answer
273 views

Python 3.2.2 print function syntax error on Mac but not on Windows

I am currently testing on a Mac a python program developed in Windows on Python 3.2. When the program is run on Windows there is no problem, but when run on a Mac I get a syntax error pointing to the ...
3
votes
1answer
163 views

Browscap.ini throwing an error when loading PHP (command line - PHP_CLI)

I have a cronjob that summarize browser statistics. This cronjob loads data and then use the get_browser() PHP function to parse the browser information. Here's what I did: cd /etc/php5/cli/conf.d ...
3
votes
2answers
58 views

Unknown syntax error on creating a simple widget in Tkinter

I was following this tutorial (http://sebsauvage.net/python/gui/#add_button) on making widgets with Tkinter. I have been making sure to follow it very carefully but, when I run it now in step 10, I ...
3
votes
3answers
81 views

Variable without $, can it be possible?

is it possible that a variable is referenced without using the $? For example: if ($a != 0 && a == true) { ... } I don't think so, but the code (not written by me) doesn't show an error ...
3
votes
4answers
418 views

Uncaught SyntaxErrror: Unexpected token ILLEGAL in chrome

I'm having a problem within the jQuery ajax function. The following code works fine in Mozilla but doesn't work in IE or Chrome, when I try to identify the problem using Developer Tools in chrome I ...
3
votes
1answer
457 views

Eclipse Indigo PDT does not underline syntax errors

I installed Eclipse SDK Indigo and then followed the following instructions to install PDT on it: This is the original solution posted by ben-k link to the topic: Eclipse indigo PDT 3.0 gotcha ...
3
votes
3answers
56 views

MySQL syntax error: I'm stuck

$queryStatus = mysql_query("INSERT into `database`.`users` (`first`, `last`, `pass`, `user`, `id`, `email`, `active`) VALUES ('$first', '$last', '$password', '$user', NULL, '$email', '0'") or die("BAD ...
3
votes
1answer
132 views

What is the largest html file that can be loaded into a Android WebView?

I have been trying to load a html file in a webview in a android activity and it seems that the html file is sending a exception ... Unexpected End of output... Screen Shot of Maxed HTML File ...
3
votes
1answer
600 views

SQLCMD utility from BAT file - how to return ERRORLEVEL in case of syntax error

How can I get %ERRORLEVEL% from SQLCMD utility when some of .sql files contains syntax error? These files create stored procedures. They don't invoke "raiseerror", but they can conatin syntax error ...
3
votes
4answers
69 views

how do I include a file which is inside other directory

My file lies in /var/www/spywgc/adm/index.php folder .... and the file i want to include lies in var/www/spywgc/adm/rpt/lib_pivot.php I want to include lib_pivot.php in index.php..... The ...
3
votes
2answers
115 views

Python interpreter invocation with “-c” and indentation issues

I'm trying to invoke Python using the "-c" argument to allow me to run some arbitrary python code easily, like this: python.exe -c "for idx in range(10): print idx" Now this code works fine, from ...
3
votes
8answers
376 views

PHP IF Statement executing both conditions

I'm currently integrating a payment system into my website. I have a response script which basically takes in the data from the secure server and displays to the customer if the payment has gone ...
3
votes
2answers
1k views

C2061 Syntax Error (identifier)

1>cb.c(51): error C2061: syntax error : identifier 'SaveConfiguration' 1>cb.c(51): error C2059: syntax error : ';' 1>cb.c(51): error C2059: syntax error : 'type' 1>cb.c(52): error C2061: ...
3
votes
5answers
5k views

In Chrome Extension get error Uncaught SyntaxError: Unexpected end of input

I wish I could give you more information about this problem, but that is really the problem: What does Uncaught SyntaxError: Unexpected end of input mean? I am getting it when I load the ...
3
votes
6answers
11k views

PHP Error: mysql_fetch_array() expects parameter 1 to be resource, boolean given

Hi I am trying to select data from table but get this error message: mysql_fetch_array() expects parameter 1 to be resource, boolean given.. This is my code: $username = $_POST['username']; ...
3
votes
1answer
829 views

Parse error after upgrading to PHP 5.3

I have a php code that works well in PHP 5.2 but throwing "Parse error: syntax error, unexpected '}'" after upgrading to PHP 5.3. When I use echo/print or heredocs to print all the HTML part of the ...
3
votes
2answers
590 views

Why is Python 3.1 throwing a SyntaxError when printing after loop?

I'm trying to run this snippet in Python 3.1 console and I'm getting SyntaxError: >>> while True: ... a=5 ... if a<6: ... break ... print("hello") File ...
3
votes
1answer
2k views

Python invalid syntax with “with” statement

I am working on writing a simple python application for linux (maemo). However I am getting SyntaxError: invalid syntax on line 23: with open(file,'w') as fileh: The code can be seen here: ...
3
votes
2answers
603 views

In Ruby, how do I check if method “foo=()” is defined?

In Ruby, I can define a method foo=(bar): irb(main):001:0> def foo=(bar) irb(main):002:1> p "foo=#{bar}" irb(main):003:1> end => nil Now I'd like to check if it has been defined, ...
3
votes
3answers
126 views

SQL Syntax with AS and ORDER BY in nested queries

I have a query with the following syntax: select x.a as a, x.b as b, x.c as c from (select distinct a from foo order by y) as x left join zzz.... left join yyy...; I want to now put in ...
3
votes
3answers
142 views

Unknown error in array initilization

I was trying to make a Intel 8080 CPU emulator (then I'd like to emulate Space Invaders, which use it). I coded nearly complete implementation of this CPU (thanks to MAME and Tickle project (mostly) ...
3
votes
4answers
1k views

Reporting syntax errors in a JSON object with jQuery and/or Javascript

What the best way to report a syntax error when I'm loading a JSON feed with jQuery? I can establish the error reporting settings like this: error: function(xhr){ alert('Request Status: ' + ...
3
votes
4answers
961 views

Firefox 3 syntax error with external css

I get a strange syntax error in Firefox 3.0.10/Leopard when using the following html/css: foo.html: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ...
2
votes
4answers
43 views

Syntax error: unexpected token “-”

I'm doing a web application, and when I started writing the code in JavaScript I'm getting this error: Syntax error: unexpected token "-" javascript I'm using Aptana Studio 3. I thought it was ...

1 2 3 4 5 12