Tagged Questions

1
vote
4answers
113 views

Double Underscore in PHP?

What does the double underscores in these lines of PHP code mean? $WPLD_Trans['Yes']=__('Yes',$WPLD_Domain); $WPLD_Trans['No']=__('No',$WPLD_Domain);
5
votes
6answers
514 views

The meaning of a single- and a double-underscore before an object name in Python

I want to clear this up once and for all. Can someone please explain the exact meaning of having leading underscores before an object's name in Python? Also explain the difference between a single and …
3
votes
5answers
131 views

Python classes special methods

Could someone please give me a complete list of those special methods that you can put in classes, e.g. a couple are __len__ and __add__, but what are the rest? Thanks.
3
votes
7answers
692 views

What is a double underscore in Perl?

I'm trying to understand someone else's Perl code without knowing much Perl myself. I would appreciate your help. I've encountered a Perl function along these lines: …
1
vote
4answers
518 views

What is this double underscore in Cocoa

The single underscore in Objective-C is apparently reserved for Apple's "internal" use (and was available for use with private instance variables prior to Apple's claim). But why would they use a …
4
votes
5answers
807 views

Using ‘__progname’ instead of argv[0]

In the C / Unix environment I work in, I see some developers using __progname instead of argv[0] for usage() messages. Is there some advantage to this? What's the difference between __progname and …
13
votes
8answers
2k views

Why do people use __(double underscore) so much in C++

I was having a look through some open source C++ code and notice a lot of double under scores where used in the code, mainly at the start of variable names. return __CYGWIN__; Just wondering is …