33,869 reputation
42580
bio website
location
age
visits member for 2 years, 10 months
seen 36 mins ago
stats profile views 3,181

3h
comment Python: Calling module's functions from within a class
Well, the message does refer to a LaLaLa instance. That would mean there's another class named LaLaLa (defined or used) in suchandsuch.
6h
comment Is C++ really imperative? Lots of it look like declarative to me
@user2341104 I'm not sure what you are asking. One core principle of declarative programming languages is to not specify control flow.
6h
comment Allocate memory for huge node tree dynamicly
What's your question? Memory allocation is a huge topic, and you haven't even defined your use case. For starters, do you need to free individual nodes? Do you need to handle allocations of different sizes? What's a typical allocation size? etc.
6h
comment Necessity of Increment/Decrement Operator in C
@SigTerm There is a huge difference between iterator advancement being slightly wordier and throwing out 90% of the language (going back to the first version of Pascal, replacing loops and conditions with goto). But what you're pointing out is a valid complaint against the question. In fact, I agree and posted a similar complaint 51 minutes ago myself! But alas the question is as it is.
6h
comment Necessity of Increment/Decrement Operator in C
My point exactly. So how does your example show increment/decrement operators are needed (which is the question, for better or for worse)?
6h
comment Necessity of Increment/Decrement Operator in C
While the general idea of that restriction is good API design, it is independent of having dedicated operators for the individual operations. In a C++ based on C-without-increment/decrement-operators, the operation now implemented as increment may be spelt it.next() and the operation that's now decrement may be spelt it.prev().
6h
answered Is C++ really imperative? Lots of it look like declarative to me
6h
comment Parsing Python function calls to get argument positions
I'm not sure what you're trying to do either, but I'm pretty sure the correct, best, most robust way to do this is to look at the AST (preferably via the ast module, _ast is an implementation detail and ast adds some useful functionality). You need to get your head around the concept of ASTs and tree traversal, but without that you're bound to produce a slow, complex, limited, fragile solution anyway.
6h
comment Necessity of Increment/Decrement Operator in C
Whether code like while (*dest++ = *src++); is good code is very arguable. I am perfectly comfortable with pointers and post-increment, but I need a double-take for such code. I've heard other people criticize it as well. Besides, how often do you write code like that? It's longer and slower than strcpy.
6h
comment Necessity of Increment/Decrement Operator in C
@Named No. I meant that answers should address the other half of the question (the C part) too. You are right, my claim that the question is C-only was wrong. I've switched to complaining that it's not only C++ ;-)
6h
comment Necessity of Increment/Decrement Operator in C
@eq- True. We're doing an awful job convincing OP that ++ and -- aren't as error prone as he claims ;-)
6h
comment Necessity of Increment/Decrement Operator in C
Despite the C++ tag, the question mentions mostly C. Edit: Yeah, it mentions it off-hand once, but it clearly focuses on C. Some mention of C (and primitive types in C++) would be useful.
6h
comment Necessity of Increment/Decrement Operator in C
But of course, that's just a problem the letter of the question. It's trivial to split this up into two statements: foo(x); x = x + 1;.
7h
comment Necessity of Increment/Decrement Operator in C
I strongly doubt there is any case, but the same is true for array lookup syntax, most loops and conditionals, etc. so that's not a good criterion for whether it should be used, or put in the language to begin with. @huseyintugrulbuyukisik Adding to rightfold's point, (x = x + 1) is equivalent to ++x, not to x++ (assignment evaluates to the assigned value, so you get the new value of x.
1d
comment Python: cracking the gc enigma
@pushpen I agree that a = 1 (or even just 1;) does not create new objects. I am merely saying that this isn't the reason a in gc.get_objects() is false: It returns false because the 1 object is not tracked by the GC at all, regardless of whether it is cached.
1d
comment Python: cracking the gc enigma
By the way, your reasoning for why a is not present has the same flaw: If integers could occur, caching should only affect whether an integer occurs multiple times, not whether it occurs at all. The same resolution applies.
1d
comment Python: cracking the gc enigma
@MartijnPieters That would explain if gc.get_objects() doesn't grow when a string is introduced later. But the string isn't in the list at all, and the list doesn't change if a string literal is introduced after getting the first object list (e.g. using the REPL). This is because the cycle GC has an optimization to not track object that can't be part of a cycle (including ints, floats, strings, and sometimes even lists of such types). There's never a str in gc.get_objects(), though of course it may contain objects that themselves refer to strings.
1d
comment how to know if I'm decorating a method
This has indeed changed in Python 3. type(foo) is type(A.foo), though A().foo still gives a bound method for obvious reasons.
1d
comment how to know if I'm decorating a method
Why do you need to know to begin with? For most purposes, a method is just another callable and can be decorated exactly like a non-method function.
1d
comment Python: Removing unnecessary brackets?
That's a type error (Z = 0; Z += 1,).