The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
103 views

Making a deep copy using a constructor in Java

I am using these instructions for the method: A constructor, public ProgrammingTeam( ProgrammingTeam p ), that takes a ProgrammingTeam p as a parameter and constructs a deep copy of p. Don’t just ...
3
votes
1answer
36 views

How to deepcopy a function object

I create a function which returns an value specified by an variable. Like y = 1. def f(x): return y I need this function as an function object to create another object dist = ...
0
votes
1answer
77 views

deep copy in python [duplicate]

I was working with pyhton deep copy trying to create a total copy of original object, but the deep copy didn't seem to create a copy, it still shares the same reference with original object, which is ...
0
votes
1answer
130 views

Deep Copy of an Object

Can I please have some help to perform a deep copy of an object. Here is my code: Option Explicit On Option Strict On <Serializable> Public Class [Class] Private _Name As String Private ...
0
votes
1answer
97 views

How to Implement deep and shallow copy for NSMutableArray in iOS?

I am trying to implement deep and shallow copy for NSMutableArray, self.oldArray =[[NSMutableArray alloc] initWithCapacity:0]; self.shallowCopy =[[NSMutableArray alloc] initWithCapacity:0]; ...
-1
votes
1answer
80 views

How can I clone a class? [duplicate]

I have the following class class CommandList( HasTraits ): command_nr = Int command_code = Int command_name = Str status = Int settings = None #It will be a ...
2
votes
1answer
58 views

Can I clone an xml node in place?

Bit of a newbie to Python and even more so to xml so bear with me:) I have an existing xml file with a structure as below. I want to clone any <Zone> node that matches <name>.text == ...
1
vote
3answers
254 views

Deep Copy of Object Array Instance, Java

I have an object made in my main Recipe recipeOne = new Recipe("Pepperoni Pizza"); This object is an instance of this Object Array defined and constructed here! public class Recipe implements ...
0
votes
1answer
45 views

Why Python3.2 can't deepcopy(globals())?

I have run these codes in python 3.2.2 IDLE: from copy import deepcopy deepcopy(globals()) And i get the error message: Traceback (most recent call last): File "H:\     \python\copy ...
2
votes
4answers
75 views

Java auto update all references when replacing (not changing) object?

So I have an ArrayList of objects of my own class: public class A {...} Now say I have a variable that holds one of these objects from the list. Now I know if I change that object (e.g. set a field ...
-6
votes
1answer
55 views

.contains() on a list of objects [closed]

I deep copied a list of objects into another list. The problem is using .contains() didn't work! Any ideas?
3
votes
3answers
145 views

Copy dictionary of lists

How can i copy a dictionary of lists and what is its complexity? My dictionary is like this: myDict = {'a':list1, 'b':list2, ...}
0
votes
1answer
111 views

Deep Copy, JUnit Test Java

I'm trying to perform a deep copy of an object in which the new object is then modified without altering the oringial. To test the functionaility i'm using JUnit to ensure the functionaility works. ...
0
votes
1answer
96 views

Assignment/Copy operator overload when class is using itself / deep copy

My problem is, that I have a class which has as an object of itself. When I try to write the assignment or copy method I end in a kind of "classception" the shortened class: class Node { public: ...
1
vote
2answers
86 views

python lists copying is it deep copy or Shallow copy and how is it done?

How is Deep copy being done in python for lists? I am a little confused for copying of lists. Is it using shallow copy or deep copy? Also, what is the syntax for sublists? is it g=a[:]?
2
votes
1answer
37 views

__deepcopy__ and inheritance with changing arguments in __init__

When inherit from a base class, that implements __deepcopy__ and the inheriting class changes the arguments in __init__, how can the __deepcopy__ from the base class be reused in the inheriting class? ...
1
vote
1answer
169 views

How to create a copy of a python function

Is there a possibility to create real copies of python functions? The most obvious choice was http://docs.python.org/2/library/copy.html but there I read: It does “copy” functions and classes ...
-1
votes
1answer
102 views

array deepcopy instead of reference in perl object

i tried several hours to store a sub array into an object and failed. maybe someone of you can show me how to store a deep copy with perl. sry i dont know if this question is clear, but should be easy ...
0
votes
1answer
48 views

Copy tags to copied django object

I'm using django-taggit to tag my to do records. class Action(models.Model): name = models.CharField("Action Name", max_length=200) complete = models.BooleanField(default=False, ...
0
votes
2answers
235 views

Deep copying array in C… malloc?

I'm trying to make a deep copy of an array in C (originalBoard being the copy): int gy, gx; for (gy=0; gy<9; gy++) { for (gx=0; gx<9; gx++) ...
0
votes
1answer
188 views

Copy or clone an object instance in Django/Python

I've following scenario: class CourseTemplate(models.Model): title = models.CharField(max_length=70) teacher = models.ForeignKey(User) description = models.TextField() max_students = ...
2
votes
2answers
399 views

copy.deepcopy raises TypeError on objects with self-defined __new__() method

I want to implement a symbol type, which keeps track of the symbols we already have(saved in _sym_table), and return them if they exist, or create new ones otherwise. The code: # -*- coding: utf-8 ...
4
votes
1answer
228 views

java - copying array list

So the below method I'm aware causes both variables to point to the same object, but if I did want to find the simplest method to has ArrayList s2 exactly the same as s1, how would I do this? public ...
1
vote
2answers
223 views

Difference between cloning and deepcopy?

I've just started programming, and am working my way through "How to think like a Computer Scientist" for Python. I haven't had any problems until I came to an exercise in Chapter 9: def ...
1
vote
1answer
609 views

copy.copy vs copy.deepcopy performance on tuples

%python -m timeit -s "import copy" "x = (1, 2, 3)" "copy.deepcopy(x)" 100000 loops, best of 3: 10.1 usec per loop %python -m timeit -s "import copy" "x = (1, 2, 3)" "copy.copy(x)" 1000000 loops, best ...
5
votes
2answers
277 views

copy vs deepcopy: semantics

My class represents states of various systems. Each instance has two attributes: one is a container shared between all the states of the same system, and the other is a container that is unique to ...
3
votes
1answer
61 views

Appending instances of an object to a list only works with time consuming deepcopy, how can I change this?

I have a pymzml.run.Reader class from the pymzml package. This is a generator object, when looping through it it yields instances of the Spectrum class (also from the pymzml package). I'm comparing ...
5
votes
2answers
401 views

Python deepcopy of list on assignment

Got this exercise on a python exam. Trying to return a deep o copy of a list like this: l = list() l = [0,1,2] l1 = l l[0] = 1 l1 should contain [0,1,2] not [1,1,2] The exercise specified to ...
4
votes
3answers
137 views

How does Python establish equality between objects?

I tracked down an error in my program to a line where I was testing for the existence of an object in a list of objects. The line always returned False, which meant that the object wasn't in the list. ...
0
votes
3answers
170 views

What is the runtime complexity of Python's deepcopy()?

I'm trying to improve the speed of an algorithm and, after looking at which operations are being called, I'm having difficulty pinning down exactly what's slowing things up. I'm wondering if Python's ...
2
votes
2answers
385 views

Side effects when passing objects to function in C++

I have read in C++ : The Complete Reference book the following Even though objects are passed to functions by means of the normal call-by-value parameter passing mechanism, which, in theory, ...
1
vote
1answer
191 views

C# DeepCopy routine

Can somebody please help me to write a DeepCopy routine for this matrix class I have ? I dont have a great deal of experience in C#. public class Matrix<T> { private readonly T[][] _matrix; ...
5
votes
2answers
393 views

Twisted threading howto avoid deepcopy

I have a twisted server which does some "long" task for each request so i defer to thread each call. In each request i access a common resource, which gets altered during the process. Each request ...
6
votes
2answers
10k views

How to make a deep copy of Java ArrayList [duplicate]

Possible Duplicate: How to clone ArrayList and also clone its contents? trying to make a copy of an ArrayList. The underlying object is simple containing on Strings, ints, BigDecimals, ...
1
vote
4answers
273 views

How can I make a deepcopy of a function in Python?

I would like to make a deepcopy of a function in Python. The copy module is not helpful, according to the documentation, which says: This module does not copy types like module, method, stack ...
8
votes
1answer
760 views

c# Thread Safe Deep Copy

I have been reading alot of the other questions as well as alot of google searches and I've been unable to find a clear solution. Based on some best practices I've read, the static methods of a class ...
0
votes
1answer
298 views

Can't use a list of methods in a Python class, it breaks deepcopy. Workaround?

I'm trying to learn more about Python by implementing a k-Nearest Neighbor classifier. KNN works by labeling the new data based on what existing data its most similar to. So for a given table of ...
4
votes
4answers
1k views

Java deep copy library

Is there library that can make deep copy? ex) normal object, array, list, inputstream etc.
3
votes
1answer
858 views

Overriding deepcopy in Django models

From this question I got the idea of overriding deepycopy in my Django models. I took the code snippet from that question and put it into my model with the following signature: def __deepcopy__(self, ...
3
votes
2answers
578 views

Deepcopy on nested referenced lists created by list multiplication does not work

As much as I love Python, the reference and deepcopy stuff sometimes freaks me out. Why does deepcopy not work here: >>> import copy >>> a = 2*[2*[0]] >>> a [[0, 0], [0, ...
0
votes
1answer
995 views

DeepCopy A SortedDictionary

I have the following : SortedDictionary<int, SortedDictionary<int, VolumeInfoItem>> that I want to deepcopy. VolumeInfoItem is the following class : [Serializable] public class ...
1
vote
4answers
866 views

Creating a deep copy method, Java

I want to make a deep copy method. I seeked help here the other day with this issue, but that was for a copy constructor. Now I need a regular method. I have the code created (nonworking), but I'm ...
5
votes
2answers
5k views

deepcopy and python - tips to avoid using it?

I have a very simple python routine that involves cycling through a list of roughly 20,000 latitude,longitude coordinates and calculating the distance of each point to a reference point. def ...
6
votes
4answers
2k views

Flex: DeepCopy of FileReference

in my project, I let users pick pictures using the FileReference class. I then load these pictures into their .data properties, using the load() function. After this I perform some local manipulation ...
3
votes
3answers
1k views

How can I debug a problem calling Python's copy.deepcopy() against a custom type?

In my code I'm trying to take copies of instances a class using copy.deepcopy. The problem is that under some circumstances it is erroring with the following error: TypeError: ...