Tagged Questions
0
votes
2answers
21 views
python 'function' object has no attribute 'GzipFile' [closed]
I write a function for compress file as following:
def gzip(filename):
'''Gzip the given file and then remove original file.'''
r_file = open(filename, 'r')
w_file = ...
0
votes
0answers
7 views
Object Relation Class Diagram
I am designing a Object Relational Database and here is my Class Diagram:
http://canning.co.nz/AdvancedDatabase/Class_Diagram.png
My Computer Class has a 1-1 relationship with the CurrentUser Class. ...
0
votes
2answers
41 views
Run a method instead of yelling AttributeError
Is it possible to create a class that, when instantiated, would never throw AttributeError, but instead would call own method to define the attribute?
Currently, I can do:
class O: pass
o = O()
...
0
votes
1answer
26 views
How do I change the same parameter on multiple objects efficiently in Blender?
Starting with a single cube, I have changed some properties (material, color, reflection attributes), and then duplicated the object into a dozen cubes, placing them in the scene. After rendering, I'd ...
1
vote
2answers
47 views
Python Count Elements in a List of Objects with Matching Attributes
I am trying to find a simple and fast way of counting the number of Objects in a list that match a criteria.
e.g.
class Person:
def __init__(self, Name, Age, Gender):
self.Name = Name
...
0
votes
3answers
53 views
Python: How can I check if an attribute of an object is a method or not?
I want to define a class with it's __repr__ method defined in such a way that it will write out only the names and values of all attributes that are not methods. How can I do this? I have managed to ...
0
votes
2answers
28 views
Javascript delete object from object
i have following function that should delete an object in object under following id:
contactDeleteCounter++;
console.log(orderContactIds);
console.log(deletePosition);
...
1
vote
2answers
97 views
Why does (file.lastModifiedDate == file.lastModifiedDate ) evaluate to false in JavaScript?
Seems like the following code should return a true, but it returns false.
How does this make sense? Is it right?
I tested it on Chrome and Firefox as well. Both are return false.
Test Code
...
0
votes
0answers
61 views
AttributeError: 'NoneType' object has no attribute 'insert'
from Tkinter import *
import random
from random import randrange
import time
root = Tk()
root.title("Blackjack")
root.resizable(False,False)
def deal():
e1.insert(0, randrange(1, 11))
def ...
0
votes
0answers
21 views
how to add an attribute to an existing object which is already stored in a collection
I have a collection of people objects that was created just after the constructor. I need the program to be able to update another attribute of the people, without having to create a new object.
0
votes
0answers
31 views
How to add additional attribute to response in Rails application
This code:
class SessionsController < Devise::SessionsController
# POST /resource/sign_in
def create
resource = warden.authenticate!(auth_options)
set_flash_message(:notice, ...
1
vote
5answers
95 views
Python: How to get attribute of attribute of an object with getattr?
How do I evaluate
a = myobject.id.number
and return None if it myobject is None
with built-in getattr? Maybe getattr(myobject, "id.number", None)?
0
votes
1answer
39 views
how to reach oracle object attributes?
I have a table that contains oracle COLOR_HISTOGRAM column, it contain values. It is an object type with colorlist and with colorfrequencielist.
How can i reach these attributes if if i want to insert ...
0
votes
2answers
61 views
python: multiple objects that can modify the attributes of a single 'master' object
Suppose I have a single instance of a master object that contains a set of parameters, then multiple instances of slave objects that should be able to access and modify the attributes of the master. ...
2
votes
1answer
205 views
pass Object as JSTL tag attribute
I am trying to make a custom tag. In this tag, I will pass an Object as attribute and it should return an array list. I have tried it and I am getting an exception like.
...
0
votes
2answers
27 views
Applying an object that only contains changes to another object in javascript
I'm currently using a pseudo object structure in my javascript. For example:
MyObj = function(options) {
options = options || {};
this.valueA = options.valueA || 'A';
this.valueB = ...
1
vote
2answers
42 views
Class in the attribute compartment of another class
Is it possible to add a class as an attribute of another class?
If it is normal situation, how can I do this?
0
votes
2answers
54 views
display properties of an object with event target
I have written code that creates boxes based on user input in a form. I use a constructor function to give the boxes these values; name, color, id and number. I am supposed to make it so that when the ...
6
votes
2answers
97 views
Access other attributes of the instance with __getattr__(self, name)
In Python's documentation, on the __getattr__ function it says:
Note that if the attribute is
found through the normal mechanism, __getattr__() is not called. (This is an intentional asymmetry
...
0
votes
2answers
37 views
Retrieve the attributes from an object in jquery - works with selectors but not using an object
$(document).bind("insertListener", function(event, elem, param1, param2) {
alert($($(elem)+[attr_a][attr_b!=y]));
});
Can't get to alert a true or false there.
elem is the object, I know how the ...
0
votes
0answers
57 views
Is there any easy way to get every attribute of the object description?
Is there any easy way to get every attribute of the object description?
For example, following is the notification.description returns of Facebook sessionStateChanged notification. When this ...
1
vote
1answer
45 views
Creating attribute names from dict keys using var()
I'm using vars() to create some object variables 'on the fly'. This doesn't seem to be the cleanest operation. But how else could I generate attribute names of my object without manually defining them ...
0
votes
1answer
82 views
How to add attributes to an object?
I'm wondering how can I add attributes, that are not declared in a class, into an object.
Let me explain :
I have my order :
[0] => stdClass Object
(
[quantityBlack] => 3
...
0
votes
0answers
282 views
AttributeError: 'module' object has no attribute 'on'
I am trying to run this script: pyfuzz https://bitbucket.org/ebo/pyfuzz/src
I am coming into an error everytime i execute pgen-example.py
Here is the exact output:
C:\Users\Administrator>cd ...
0
votes
1answer
47 views
Attributes of objects of objects
I'm a little stuck with the following approach: I have file that looks a little like XML but actually isn't:
<VERSIE>1.0</VERSIE>
<REEKS>WWDP1028-3,DWP HOGELIJK,</REEKS>
...
0
votes
3answers
97 views
Using more than 300 properties for an object
Just wanted to ask you about the drawbacks (I mean memory or reponse time) of using an object with more than 300 properties in the .NET Framewok (C#).
I'm thinking to separate the properties in ...
4
votes
2answers
84 views
Why can you add an attribute to an instance of a subclass of object, but not to an instance of object?
Why does this raise an error:
o = object()
o.i = 1
But this does not:
class A(object):
pass
a = A()
a.i = 1
?
2
votes
1answer
288 views
Adding attribute on object during run time not happening
I try to add attributes on a certain object. This object can be int, string, List or whatever.
I try to use
TypeDescriptor.AddAttributes(object, attrList.ToArray());
but this list of attributes ...
1
vote
3answers
565 views
How can I describe a Python object, and what is the relationship between attributes, identity, type and value?
(In regards to Python 3.2)
I'm trying to make a statement along the lines of:
In Python, an object is...
According to the doc ...
1
vote
3answers
145 views
Show all public attributes (name and value) of an object
This thread didn't helped me.
If I use
$class_vars = get_class_vars(get_class($this));
foreach ($class_vars as $name => $value) {
echo "$name : $value\n";
}
I get
attrib1_name : ...
0
votes
2answers
107 views
Cannot access array objects when that array is itself an attribute of an object
I am unable to access an array of objects that is itself an attribute of a larger object.
console.log(skillprofiles);
console.log(skillprofiles.skills);
The above statements return an array of two ...
9
votes
3answers
223 views
Python objects - avoiding creation of attribute with unknown name
Wishing to avoid a situation like this:
>>> class Point:
x = 0
y = 0
>>> a = Point()
>>> a.X = 4 #whoops, typo creates new attribute capital x
I created the following ...
1
vote
1answer
198 views
for each loop @object and getting @object.attribute not working
Im trying to for each loop true @participants collection like below:
- (1..@participants.count).each do |participant|
- @user = User.where(:id => 1).first
# @user = User.where(:id => ...
2
votes
2answers
1k views
jquery - this.attr() not a function?
I'm not quite sure if I'm not using this in the correct scope or what, but I have a script that basically captures a link click and causes the page to fade out before going to the linked page. ...
0
votes
3answers
216 views
Sorting a hash table of objects (by the attributes of the objects) in Ruby
Say I have a class called Person, and it contains things such as last name, first name, address, etc.
I also have a hash table of Person objects that needs to be sorted by last and first name.
I ...
3
votes
1answer
785 views
Specifying attributes of a Rails object passed into a JSON object
I have an object in Rails that has attributes A, B, C, D, and E. When passing this object back to the client-side through a JSON object, how can I tell the rails controller to only include attributes ...
0
votes
3answers
119 views
in a javascript object, what's best way to get the attribute of a value?
if we have a javascript object
var calories = { apple:200, pear:280, banana:300, peach:325 }
what is best way to find the (first) fruit that has 280 calories?
could ...
2
votes
3answers
106 views
Javascript Object: a function or method in an attribute
I am a trying to put the result of a method in an attribute, but I keep getting the error: "Uncaught TypeError: Object [object DOMWindow] has no method 'ppp'"
This is my simple code:
var ttt = {
...
0
votes
2answers
459 views
Declare a javascript object. Then set properties with jQuery and Ajax
I can't access the attribute of an instantiated class. The attribute is set using an AJAX call.
I am trying to define the class "CurrentUser", and then set the attribute "userId" using AJAX.
Here ...
0
votes
1answer
458 views
Why does IE require attributes classid and codebase to properly embed Flash?
Recently struggling with weird IE9 + Flash problem I came over multiple advices to use classid and codebase attributes specifically for IE. But couldn't find any explanation of why they might be ...
0
votes
2answers
108 views
How to pass Exceptions array to Attribute
I am creating Attribute where I need to pass array of Exceptions, how to do that?
Let's say
[assembly: MyAttribute(ExceptionList = [System.Web.HttpException, ...
1
vote
1answer
28 views
Where should I put this object property/attribute
I am creating a testing program. The three main objects I have right now are Tests, Questions and Answers. I have three tables in the database, tests, questions and answers and a FK from questions ...
1
vote
1answer
74 views
Attribute Not Being Added to Object
I'm trying to add an attribute to a model object. Direct access works but when I print the entire object or encode it into JSON, that attribute is left out. Can someone tell me what I'm doing wrong?
...
0
votes
1answer
118 views
Pass php object to different script in magento
I have a php script that's called in by xml to show on the product page as a tab.
I need to be able to to retrieve the attributes of the current product shown in the script as well.
for example:
...
3
votes
3answers
2k views
access attributes of a class in R
I have created an object in R that contains several attributes.
How can I easily access them.
I can do
attr(x, attributeName)
or
attributes(x)$attributeName
but none of them is really ...
1
vote
1answer
2k views
PHP - Simple XML attributes problem
I use PHP and Simple XML.
I use a loop that does not work like expected:
foreach($item->Image->attributes()->source as $key => $value)
{
echo $value;
}
In the foreach I try to tell ...
1
vote
1answer
339 views
How to get the name of attribute in python object?
For example I have next python class
class Myclass():
a = int
b = int
Imagine that I don't know the name this class, so I need to get the names of attributes? ("a" and "b")
0
votes
1answer
23 views
How to detect changing of attributes in a class?
here is my problem with a Java program: I have two classes (let's call them Ob1 and Ob2), both with an integer and other attributes. Ob2 has an attributs 'ob1', which is an instance of Ob1. Ob1 ...
1
vote
2answers
217 views
Functional object basics. How to go beyond simple containers?
On the upside I'm kinda bright, on the downside I'm wracked with ADD. If I have a simple example, that fits with what I already understand, I get it. I hope someone here can help me get it.
I've got ...
0
votes
1answer
776 views
PowerShell: How to evaluate each attribute in an object?
This can be applied to many different scenarios, but specifically I am running:
Import-Csv "file.txt" | foreach { $_ }
Generically, the output is:
Attribute1 : $true
Attribute2 : asdf
Attribute3 : ...


