Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
107 views

Type errors with Existential types in Haskell

I am struggling with existential types in my program. I think I'm trying to do something very reasonable however I cannot get past the typechecker :( I have a datatype that sort of mimics a Monad ...
7
votes
1answer
165 views

Cython and deepcopy() woes with referenced methods/functions. Any alternative ideas?

I've been playing with Cython recently for the speed ups, but my project inherits a module that has a copy() method which uses deepcopy(). I tried implementing the deepcopy() within an overrided ...
5
votes
3answers
413 views

Python's example for “iter” function gives me TypeError

The iter function example at python docs: with open("mydata.txt") as fp: for line in iter(fp.readline): print line gives me this: Traceback (most recent call last): File ...
4
votes
2answers
86 views

Haskell Type Context from instance declaration required on functions

I used a type context in doing an instance declaration for a data type I made up. data Set a = Insert a (Set a) | EmptySet instance (Show a) => Show (Set a) where show x = "{" ++ show' x ++ ...
4
votes
2answers
1k views

Uncaught TypeError: Cannot call method 'toLowerCase' of undefined

I ran into a very vague error while doing some simple jQuery DOM manipulation. The line that triggered the error is the following: $(this).closest('tr').remove(); The error, as stated in the ...
4
votes
5answers
129 views

Is it a bad idea to mix bool and ret codes

I have some programs which make heavy use of libraries with enumerations of error codes. The kind where 0(first value of enum) is success and 1 is failure. In some cases I have my own helper ...
4
votes
4answers
562 views

Python TypeError on regex

so I have this code... url = 'http://google.com' linkregex = re.compile('<a\s*href=[\'|"](.*?)[\'"].*?>') m = urllib.request.urlopen(url) msg = m.read() links = ...
4
votes
5answers
2k views

python logging into a forum

I've written this to try and log onto a forum (phpBB3). import urllib2, re import urllib, re logindata = urllib.urlencode({'username': 'x', 'password': 'y'}) page = ...
3
votes
1answer
127 views

How to resolve Haskell type errors

I'm trying to learn Haskell, and I'm writing the unzip function (yes I know it's built in, this is practice) but I'm having issues with my recursion line. I have: -- unzip turns a list of two ...
3
votes
1answer
294 views

matplotlib annotate xycoords=('data','axes fraction') => TypeError: 'NoneType' object is not iterable

>>> import matplotlib >>> matplotlib.__version__ '0.99.1.1' the following code runs: import matplotlib.pyplot as plt plt.figure() ax=plt.axes([.1, .1, .8, .8]) ...
3
votes
2answers
219 views

A question about JavaScript's TypeError exception

I've 3 questions. Thank you! First question: When will JavaScript codes cause a "TypeError" exception? Other questions: I've codes below: <!DOCTYPE html> <meta charset="utf-8"> ...
3
votes
1answer
5k views

“Cannot read property 'xxx' of null”

I've got a document fragment with children that I want to loop over (when possible). This is causing an error "Cannot read property 'xxx' of null". How do I test if this will be the case?
3
votes
1answer
4k views

TypeError: coercing to Unicode: need string or buffer, User found

i have to crawl last.fm for users (university exercise). I'm new to python and get following error: Traceback (most recent call last): File "crawler.py", line 23, in <module> for f in ...
3
votes
2answers
321 views

Why does GHC infer type of `IO b` for an application of `hSetBuffering`?

I am trying to use hSetBuffering in a Haskell program using GHC 6.10. When I try this very simple program: module Ctlc where import IO main :: () main = do hSetBuffering stdout NoBuffering ...
3
votes
7answers
7k views

Uncaught TypeError: Property '$' of object [object global] is not a function?

Uncaught TypeError: Property '$' of object [object global] is not a function in line 2: $(document).ready(function() { $('#tabs > ul').tabs({ fx: { opacity: 'toggle' } }); ...
2
votes
2answers
104 views

jQuery Autocomplete Error: Property 'source' of object is not a function

I am trying to retrieve suggest queries from google's API and I keep getting an error: Uncaught TypeError: Property 'source' of object #<Object> is not a function The file is being parsed ...
2
votes
2answers
121 views

Uncaught TypeError: Can not set propery 'FUNCTION_NAME' of undefined for widget implementation

I am trying to develop a jQuery widget which can be embedded on any site. Following is the script code: (function($) { var jQuery; if (window.jQuery === undefined || window.jQuery.fn.jquery ...
2
votes
1answer
58 views

How do you load an XML file into a string with python on GAE?

I'm using the latest GAE default python environment. Both of these give expected results: isTrue = os.path.exists(path) numberGreaterThanZero = os.path.getsize(path) But this: myStrLen = ...
2
votes
2answers
813 views

TypeError: cannot concatenate 'str' and 'int' objects

I'm learning Python now, yay! Anyway, I have small problem. I don't see problem in here: x = 3 y = 7 z = 2 print "I told to the Python, that the first variable is %d!" % x print "Anyway, 2nd and 3rd ...
2
votes
1answer
280 views

How do you set the frame size of cv.CreateVideoWriter

if I try: writer = cv.CreateVideoWriter(file, -1,(int(800),int(600)), is_color=1) -or- writer = cv.CreateVideoWriter(file, -1,(800,600), is_color=1) -or- writer = cv.CreateVideoWriter(file, ...
2
votes
2answers
206 views

How to solve Python TypeError?

This is my code below and I try to load data from one database to another. I believe everything works fine but an error occurs and I don't know what this means. import pymssql, psycopg2 class ...
2
votes
2answers
587 views

AS3 Error #1007: Instantiation attempted on a non-constructor

I'm getting the title error while trying to create an instance of a library item: trace(ApplicationSettings.AGEGATEVIEW); var clazz:Class = ApplicationSettings.AGEGATEVIEW as Class; ageGateForm = new ...
2
votes
4answers
332 views

Python, tuple arguments playing nicely with others

For example: mytuple = ("Hello","World") def printstuff(one,two,three): print one,two,three printstuff(mytuple," How are you") This naturally crashes out with a TypeError because I'm only ...
2
votes
2answers
282 views

jQuery $().each instead of $.each()

I am writing a plugin using the standard authoring pattern for jQuery, using methods to do different things with, and I'm running into a problem with .each(). I understand from the docs about the ...
2
votes
1answer
25k views

Uncaught TypeError: Object #<Object> has no method 'movingBoxes'

Im trying to use the movingBoxes plugin with my asp.net mvc site and it is not working (obviously). I have the movingboxes.js imported in my head tag in the site.master like so <script ...
2
votes
3answers
889 views

Python unsubscriptable

What does unsubscriptable mean in the context of a TypeError as in: TypeError: 'int' object is unsubscriptable EDIT: Short code example that results in this phenomena. ...
2
votes
1answer
694 views

Ruby: erb throwing error “`result': can't convert String into Integer (TypeError)”

Quick background: I'm setting up a quick and dirty templating scheme where all of my template files are named '*.erb'. the fill in data resides in a yaml file. Output is to files with the name of the ...
2
votes
3answers
481 views

How do I down-cast a c++ object from a python SWIG wrapper?

The problem: I've wrapped some c++ code in python using SWIG. On the python side, I want to take a wrapped c++ pointer and down-cast it to be a pointer to a subclass. I've added a new c++ function to ...
2
votes
2answers
293 views

TypeError: unsupported operand type(s)

This is a program I'm writing that's supposed to display some text in a window... import pyglet from pyglet import window from pyglet.text.layout import TextLayout class ...
2
votes
4answers
3k views

Python TypeError: an integer is required

import scipy,array def try_read_file(): def line_reader(lines): for l in lines: i = l.find('#') if i != -1: l = l[:i] l = l.strip() if l: ...
2
votes
1answer
555 views

Array subclasses cannot be deserialized, Error #1034

I've just found a strange error when deserializing from a ByteArray, where Vectors cannot contain types that extend Array: there is a TypeError when they are deserialized. TypeError: Error #1034: ...
2
votes
4answers
264 views

Catch a type error in C++

How do i check if a result is of the right type(int, float, double, etc.) and then throw and catch an exception in case it's not? Thanks all, Vlad.
1
vote
1answer
197 views

Facebook JavaScript API Error in Safari: TypeError: 'undefined' is not an object (evaluating 'b.fbCallID=a.id')

As of about a week ago (the cutover to OAuth 2.0, I believe), I am getting the following error on page load in Safari when including http://connect.facebook.net/en_US/all.js. TypeError: 'undefined' ...
1
vote
1answer
102 views

jqGrid - cant select rows - Cannot call method 'indexOf' of undefined

Thanks to Oleg, my jqGrid now looks like this, and works fine. (my problem after the code) var columnModel = [{ name: 'ID', index: 'ID', sortable: true, summaryType:'count', summaryTpl:'<b>{0} ...
1
vote
3answers
86 views

Trying to connect to AMFPHP - NetConnection.connect() returns TypeError: Error #1009

UPDATE: Now I've moved the AMFConnection var declaration to outside the functions in Main, and commented out some trace() commands, and now it gives new errors: Error #2044: Unhandled ...
1
vote
1answer
181 views

Uncaught TypeError: Object function (a,b){return new e.fn.init(a,b,h)} has no method 'fancybox'

I'm making a search page where the results of the form with a single input will be displayed inside a Fancybox. Everything works perfect but if I close the Fancybox then it will not open for a second ...
1
vote
2answers
60 views

JavaScript Seems to Stop After AJAX Call

The question title is rather vague, but here's my situation. I have roughly 700+ lines of jQuery for a web application, each function and "major point of interest" in the code noted by a log to the ...
1
vote
2answers
378 views

TypeError: 'builtin_function_or_method' object is not subscriptable

elif( listb[0] == "-test"): run_all.set("testview") listb.pop[0] ERROR: Exception in Tkinter callback Traceback (most recent call last): File ...
1
vote
2answers
231 views

Uncaught TypeError: Converting circular structure to JSON

We're using the fb:registration plugin to sign up users on our site. Today I noticed the registration redirect is no longer working in Google Chrome and Safari (latest public release). I know for sure ...
1
vote
1answer
86 views

Unable to use a tuple as a dictionary key?

The code is a little complex, sorry. Please focus on the parallel_p function. Although sign is a tuple, Python complains: if sign in hashtable and gives a TypeError. Why is sign a numpy.ndarray ...
1
vote
1answer
48 views

Python 2.4 - unittest: TypeError: run() takes exactly 2 arguments (1 given)

I can't quite figure this one out, the following code works perfectly with Python 2.6+ if __name__ == '__main__': suite = unittest.TestSuite() suite.addTest(TestMrdfWriter("testParParser")) ...
1
vote
1answer
69 views

C++, Python, Incompatible Types of Numbers

I am having difficulty using the vector_indexing_suite in Boost. In C++ I have defined: class_<std::vector<double> >("PyVecDouble") ...
1
vote
2answers
59 views

compiling / repairing monadiccp type errors

If anyone could help me look into this issue with compiling monadiccp, I'd appreciate it. There's a typing problem which I can't understand. steps to reproduce have a reasonably up-to-date version ...
1
vote
1answer
37 views

Pygame group update takes no arguments

I've read up on similar problems elsewhere, but it says just to add 'self' to the function definition. When I check the file it's self, it actually already has the self keyword first! Here's the ...
1
vote
1answer
47 views

Why does this Program run from Aptana IDE and not in python command?

The following code results in a htmlbody,emailaddress = ConnEmailParser() TypeError: 'NoneType' object is not iterable Error but works fine in IDE. Emails are being sent and PDF files generated. ...
1
vote
1answer
306 views

Adding flags dynamically giving problems , HighCharts

So i asked a couple of days ago Here as to which charts one can use for Stock based applications and i finally settled with HighCharts Simply because its so awesome. Now my chart renders this way ...
1
vote
2answers
299 views

Uncaught TypeError: Object function has no method

I'm sure this is very readily solved. I'm trying to invoke slowbie.tick(); Here's the code: function slowbie(){ //Enemy that slowly moves towards you. this.max = 7; this.w = 25; this.h ...
1
vote
2answers
73 views

Deep Javascript check if undefined without TypeError

I'm tired to write something like if ( typeof Foo != 'undefined' && typeof Foo.bar != 'undefined' && typeof Foo.bar.baz != 'undefined' && Foo.bar.baz == 'qux' ) {...} ...
1
vote
2answers
163 views

MongoDB's BSON gem can't read a MongoDB database file?

I have a MongoDB DB with some data. That all works fine, the data was inserted into the mongo DB properly. What I want to do now, though, is open the mongoDB DB file, and parse it using the BSON gem ...
1
vote
3answers
284 views

“TypeError: argument of type 'NoneType' is not iterable”?

Here is some Python code which I wrote to generate a random poker hand, just for the heck of it/for the challenge, but when I try to run it, I get the error above on the line "if card in hand". What's ...

1 2 3