The Ruby or Python `NameError` exception.
0
votes
1answer
26 views
uninitialized constant Rails (NameError) in Rails 3.213
When I attempt to visit the rails site I am working or attempt to run the rake I get the following error
uninitialized constant Rails (NameError)
/path/config/boot.rb:4:in `<top (required)>'
...
0
votes
1answer
19 views
NameError: global name 'runfile' is not defined
I get the above error when I run this code:
from os import path, access, R_OK
ODBf = 'C:/Abaqus_JOBS/Reliability/Job-M1/Job-M1-3_run_rel2.odb'
if path.isfile(ODBf) or access(ODBf, R_OK):
print ...
0
votes
2answers
22 views
How do you call class methods in a signal handler in python daemon?
I'm trying to write a signal handler that will call methods from a class variable.
I have code that looks like this:
import daemon
class bar():
def func():
print "Hello World!\n"
def ...
0
votes
1answer
36 views
Uninitialized constant error rails 3
when i start rails server, i get the uninitialized constant SomeName (NameError).
Is it because I have a different name to the rails directory and different name in the following files -:
...
1
vote
2answers
20 views
Fixed: Python NameError, fixed AttributeError and got this?
FIXED: turns out there is a module already called parser. Renamed it and its working fine! Thanks all.
I got a python NameError I can't figure out, got it after AttributeError. I've tried what I ...
0
votes
1answer
29 views
global name 'self' is not defined in Tornado [closed]
I'm now reading a O'reilly's book "Introduction to Tornado" and the first example the author writes is as follows (hello.py):
import tornado.httpserver
import tornado.ioloop
import tornado.options
...
0
votes
1answer
48 views
NameError: undefined local variable or method in irb
I am using ruby 1.9.2 with irb and I keep getting the following error message:
NameError: undefined local variable or method `ex1' for main:Object
from (irb):4
from ...
0
votes
1answer
20 views
Python 3 : Global name 'inSet' is not defined
I've just began learning Python 3 about 2 weeks ago. I decided to make a basic text game However, I've run into a bug in the code that I can't seem to fix, and that I can't find anywhere else. When I ...
0
votes
2answers
25 views
ruby 1.8.7 multithread mail 'uninitialized constant (NameError)'
My script sends emails for list of users. I need multithreading because error in 1 address crashes all app. This is my implementation:
require 'thread'
<...>
lock = Mutex.new
...
0
votes
0answers
26 views
Can't create an object from one .py file in another .py file in the same directory
In one file I create a class called Player, but when I try to create an object of that class in another file I'm told that global name "Player" is not defined. Why would this be?
Edit: At the top of ...
1
vote
2answers
39 views
Python NameError from contents of a variable
I've been making a mod for the Raspberry Pi version of Minecraft and I'm getting a very frustrating error every time I enter one of the commands in my program. Here's my code:
import ...
0
votes
0answers
79 views
uninitialized constant ActionController
Backstory: Some friends and I were working on an app and wanted to select multiple items for processing on another page. Before we found RailsCast #165, I created a branch and added scaffold for a ...
0
votes
2answers
81 views
Rails <top (required)>: uninitialized constant
I have a model called class App::BaseModel into a file called base_model.rb
Then I have a message.rb file which on the first line has the following:
class App::Message < App::BaseModel
When ...
0
votes
2answers
42 views
Python NameError: name 'harris' is not defined
I apologize in advance if there is somewhere the same thread of mine.
I am new in Python programming and trying to compute an example from "Programming Computer Vision with Python" written by Jan ...
3
votes
1answer
45 views
How does IDLE run a .py module?
Windows 7 and Python v2.7.3
With this module "test.py":
print 'name: ' , __name__
print 'file: ' , __file__
I can go to CMD and type: python test.py
The result would be:
name: __main__
file: ...
0
votes
2answers
36 views
uninitialized constant Bot::Wordplay (NameError) from Beginning Ruby tutorial
Currently going through Beginning Ruby chapter 12, it builds a conversation bot. When running the basic_client.rb file, the bot loads. When given input 'i hate television', the bot should recognize ...
0
votes
1answer
26 views
What is causing the ActionMailer error: undefined local variable or method `jp2CharContext'?
When attempting to do character detection on incoming emails, sometimes a NameError is thrown with this error message:
undefined local variable or method `jp2CharContext' for ...
0
votes
1answer
53 views
NameError in UsersController#show
I am currently working on the Ruby on Rails tutorial by Michael Hartl. I am trying to add a page for each user in my database by creating an HTML with embedded ruby page in the views directory. The ...
0
votes
0answers
197 views
NameError: undefined local variable or method `string' for main:Object in Rails migration
I am trying to add a new column to my rails model. I did similar thing before and everything worked perfectly every time. But, this time I am getting an weird error.
When I try to add source_code ...
-1
votes
1answer
39 views
Cant cach nameError in python
Here is my code:
from SimPy.Simulation import *
class Message(Process):
def arrive(self, destination):
yield hold, self, 2
try:
print "%s %s going to %s" % (now(), ...
0
votes
1answer
170 views
Why am I getting NameError: name 'array' is not defined
I'm using spyder and have written the following class:
class Ray:
def __init__(self, r, p, k):
if r.shape == (3,):
self.r = r
if p.shape == (3,):
self.p ...
0
votes
2answers
24 views
Ruby on Rails: Delete link causing nameError
I am new to rails and I am following a tutorial. I have the same code but I am getting a NameError when I include a "Delete" link in my view.
Here is the error
NameError in Posts#index
undefined ...
0
votes
1answer
37 views
Ruby Type Class Missmatch Error
Platform: Ubuntu 12.10
In my terminal, I am trying to run bundle exec rspec spec/models/user_spec.rb
I am following the Learn Web Development: the Ruby on Rails tutorial by Michael Hartl to test a ...
1
vote
1answer
56 views
NameError in Rails 3
So I'm trying out the Public Activity gem for a notification timeline and I don't understand why I'm getting the NameError , uninitialized constant message.
Here's the error I'm getting:
NameError in ...
0
votes
1answer
48 views
Ruby on Rails: No Migration Scripts are created any longer
I've been working with Rails for 3 Months now, but haven't experienced this problem until now. I'm currently working through Micharl Hartls Tutorial and everything worked fine so far, but suddenly ...
0
votes
2answers
94 views
what is a browser variable in python?
I'm a newb trying to write a Selenium script using Python. There's a section of the script where I'm asking the program to wait until the iframe has appeared before selecting another element.
I've ...
0
votes
0answers
43 views
MongoKit NameError:name 'Document' is not defined
I using MongoKit.
I want to select data from mydatabase what is MongoDB.
But I have a problem what is NameError!
NameError:name 'document' is not defined.
My code is :
class x(Document):
...
1
vote
2answers
235 views
NameError: name 'now' is not defined
From this source code:
def numVowels(string):
string = string.lower()
count = 0
for i in range(len(string)):
if string[i] == "a" or string[i] == "e" or string[i] == "i" or \
...
0
votes
1answer
119 views
Rails server won't run - uninitialized constant use (NameError)
I ran a bundle install and since have not been able to run rails s successfully within terminal. I am new to rails and have tried to find help on this but nobody can explain it to me in the 101 way. ...
1
vote
3answers
61 views
Confusion with the assignment operation inside the fallacy `if` block
I was playing with the assignment operation within the if block. And finally the below operation made me surprised:
C:\>irb --simple-prompt
if false
x = 10
end
#=> nil
p x
nil
x.object_id
...
0
votes
0answers
45 views
sqlalchemy mysterious NameError
The Situation
I have a pretty involved database and its models are split up into multiple files because there are loads of them.
foo.py
from ...models.capture_models import CaptureInstance
from ...
0
votes
1answer
42 views
NameError in Account#show, Ruby on Rails
I have been unable to find a solution to this problem. It is similar to a lot of the questions asked before, but I believe something is different in mine. I am currently getting this error:
NameError ...
2
votes
2answers
146 views
Rails: ActiveRecord class throws “NameError: uninitialized constant” - Is this a naming issue?
I have a model file called:
r_i_o_modules_and_instrument.rb
...which contains something like this...
class RIOModulesAndInstrument < ActiveRecord::Base
belongs_to :parentmodel
...
0
votes
1answer
35 views
delayed_job - NameError - uninitilized constant
I have this custom job which is located in /lib/jobs/MessageNotificationJob.rb
class MessageNotificationJob < Struct.new(:user_id, :message_id)
def perform
@user = User.find(user_id)
...
0
votes
2answers
94 views
NameError: name 'yearout' is not defined
Please tell me what is wrong, and other ways it needs improving
def finalcalc(y, d, m):
end = (y + d + m) % 7
return end
def monthlook(m):
if m == 1:
monthout = 6
elif m == 2:
...
1
vote
1answer
253 views
NameError: global name 'long' is not defined
I have a Python version 3.3.0 and I am not sure why it does not let me do long for b and m here...
I tried to look up the answers on here and but nothing helped...thanks
im getting an error saying
...
-1
votes
1answer
71 views
NameError global variable undefined, even though it is in the same function, and wasn't imported?
this is my first question on this forum!
I am trying to write a test file for a class in another file (All in Python btw) and I get a NameError: global variable name here undefined. I'll show you some ...
0
votes
1answer
55 views
Nested Attributes in Rails3
I have an app where the user can build a project which will have up to 12 volunteer time slots where other users can sign up to work on the project.
When a project is created, the user is asked for ...
0
votes
1answer
45 views
Importing classes and NameError
Don't see much point in posting whole of an actual code here, so I'll try my best to generalize my problem.
Function(let it be named x) is defined at the start of the code.
Then the class(which has a ...
-1
votes
1answer
445 views
NameError: global name 'NAME' is not defined
I have been having an interesting time building a little web scraper and I think I am doing something wrong with my variable or function scope. Whenever I try to pull out some of the functionality ...
-1
votes
2answers
64 views
Implementing Trees in Python - NameError [closed]
I am trying to write my own Tree class in Python (2.7). I started with an example I found in another thread, which looks like this:
class Tree(object):
def __init__(self):
self.left = ...
1
vote
3answers
106 views
No Count function on Python on my Raspberry Pi
When I try to use the 'list.count' function on my raspberry Pi it comes up with
Name Error: name 'count' is not defined
Is there any thing I can do about it? Thank you in advance for any help. ...
0
votes
1answer
50 views
nameError: global name page_title undefined
I looked at many of the exisiting nameErrors and undefined variable posts and unfortunately was unable to resolve my issue. I am relatively new to programming and especially Python.
I have a ...
-4
votes
1answer
49 views
name is no defined in python [closed]
I want to check in Python whether a instance of a class (student) exists:
def student_exist(stuno): # check if a student exist
a='RIS'+str(stuno)
try: a
except ...
-2
votes
2answers
326 views
Python: NameError: name 'turn' is not defined.! [closed]
I've been learning python 3 in the hopes of someday developing games. So I'm doing some projects to practice. I've run into a problem
class bs:
turn = 0
def battle():
if player.hp ...
0
votes
1answer
193 views
python NameError: global name 'multiprocessing' is not defined
I am trying to convert my threaded code to multiprocessing code. but it is giving me error
Name Error: global name 'multiprocessing' is not defined
Multiprocessing is installed and I imported ...
2
votes
1answer
30 views
NameError on accessing ancestor constants when using Class.new?
To my current knowledge Ruby classes defined with Class.new should not differ from classes created with the class keyword. Then why do following classes B and C behave differently?
class A
TEST = ...
0
votes
7answers
105 views
Java: Catch uninitialized variable
Suppose we have a case where a variable is declared in certain conditions:
if (x = 1)
boolean z = true;
Later on, we'd like to test if the variable z exists with try-catch. Is this possible and if ...
0
votes
1answer
288 views
NameError: name 'Tag' is not defined
I'm creating the model for my django site (python, if that's not obvious).
from django.db import models
class Picture(models.Model):
name = models.CharField(max_length=100)
pub_date ...
-2
votes
1answer
449 views
NameError: name 'self' is not defined? [closed]
I am currently working on python programming.
class A:
def LoadPosition(self):
FILE = open('a.txt', "r+")
i = 0
for node in self.nodes:
line = FILE.readline()
...




