Tagged Questions
-1
votes
0answers
45 views
bitcoin OP_CHECKSIG in python
Recovering Bitcoin private keys using weak signatures from the blockchain
private key = (z1*s2 - z2*s1)/(r*(s1-s2))
We just need to find z1 and z2! These are the hashes of the outputs to be signed. ...
-1
votes
0answers
23 views
How to access the value of a private variable on another function?
a = open('expressoes.txt', 'r')
pilhaop = []
b = a.readlines()
string = []
def posfixa():
j = 0
while j in range(len(b)):
fixa = b[j].strip()
print fixa
...
-1
votes
0answers
24 views
AES in python using pyCripto [closed]
I am working on a project on aes implementation in python but I can't figure out How to implement aes in python. How to generate the local and private key.? And how to convert a plain text to criper ...
0
votes
1answer
52 views
How can you provide this access specifier protection in python?
Here is the scenario I am currently dealing with.
There is a class called Service. Basically, only a single object of this can be created by a node. Once this object is created it is passed from one ...
0
votes
1answer
68 views
python, __str__ a private variable
I am trying to work with private variables so made this test case.
class X():
def __init__(self):
self.__a = 0
def __str__(self):
print(self.getA())
def getA(self):
...
2
votes
0answers
108 views
How can I get the secret link for a track posted to Soundcloud in Python?
I'm developing a simple app using Python where I can post tracks to my own Soundcloud account. I would like to get the 'Secret link' URL for a track that I post. For example, I get the most recent ...
2
votes
2answers
503 views
Python read-only property
I don't know when attribute should be private and if I should use property.
I read recently that setters and getters are not pythonic and I should use property decorator.
It's ok.
But what if I ...
2
votes
3answers
210 views
Actual implementation of private variables in python class [duplicate]
Possible Duplicate:
The meaning of a single- and a double-underscore before an object name in Python
I had a question when I was reading the python documentation on private variables link.
...
1
vote
1answer
140 views
Python “private” name mangling and instance vs class attributes
I was writing a decorator that needs to access private variables and found this discrepancy. Can anyone explain this?
(Python 2.5)
Naming mangling works as expected for attributes defined in the ...
0
votes
0answers
111 views
Using pydoc for non-public/private classes
When I use _ as a prefix for a class name (see also http://docs.python.org/tutorial/classes.html#private-variables-and-class-local-references and "Private" (implementation) class in Python), ...
6
votes
6answers
142 views
Does Python require intimate knowledge of all classes in the inheritance chain?
Python classes have no concept of public/private, so we are told to not touch something that starts with an underscore unless we created it. But does this not require complete knowledge of all ...
0
votes
4answers
524 views
is this code truly private? (python)
I am trying to make python allow private variable, so I made this decorator that you put at the begging of a class so that every function will get an additional private parameter that they can modify ...
-2
votes
1answer
126 views
How to make Python web application private?
I am developing Python back-end web application. Work-time management is also included into the application. The question that I am asking for is:
Ex. we have 3 locations that will use this ...
1
vote
1answer
1k views
Python OpenSSL generating public and private key pair
I am having problem finding a command that would generate a public and private key pair using OpenSSL. Could someone show me some example code of this in action.
Thank you
5
votes
4answers
689 views
How to protect python class variables from an evil programmer?
How can I protect my variables from this kind of attack:
MyClass.__dict__ = {}
MyClass.__dict__.__setitem__('_MyClass__protectedVariable','...but it is not')
The above changes the variable ...
2
votes
2answers
783 views
Calling private function within the same class python
How can i call a private function from some other function within the same class?
class Foo:
def __bar(arg):
#do something
def baz(self, arg):
#want to call __bar
Right now, when i do ...
3
votes
2answers
104 views
How/Why does this work in python? rover._Dog__password()
I am doing the python koan (for python 2.6) and ecnountered something I don't understand. One of the files has the following code in line 160:
class Dog(object):
def __password(self):
...
4
votes
3answers
1k views
Private Constructor in Python
I'm new to Python. How do I create a private constructor which should be called only by the static function of the class and not from else where?
0
votes
4answers
169 views
How to refactor methods in Python in order to make them private?
I know that there is no such thing as true private in Python for sometimes you need to following:
prevent people from calling some methods or warn them when they do, but allow them to be called from ...
2
votes
1answer
355 views
epydoc hide some class functions?
I have some methods in my class which are only meant to be used by other methods of the class. I've prefixed their names with '_'. Can I hide those functions from epydoc? Is it a good idea?
Should I ...
2
votes
3answers
260 views
True privateness in Python
PEP 8 states that (emphasis mine):
We don't use the term "private" here, since no attribute is really private in Python (without a generally unnecessary amount of work).
I guess it refers to ...
1
vote
1answer
165 views
Python private class variables that aren't class variables
When trying to access __variables from a class, the parser assumes the 2 underscores are private relative to the current class. Notice how an unrelated function gets a "private" variable.
Is this a ...
4
votes
2answers
1k views
Why can't I call a private method when I'm inside a public method?
I have the following code:
class MyClass:
def __private(self):
print "Hey man! This is private!"
def public(self):
__private()
print "I don't care if you see this!"
...
0
votes
5answers
242 views
python: reference “private” variables' names in an organized way
Suppose I have a class, and I want to reference some elements in the ' __dict__ (for instance, I want to copy the dict and delete the attribute that cannot be pickled), from inside the class.
Problem ...
6
votes
4answers
8k views
Private Variables and Methods in Python [duplicate]
Possible Duplicate:
The meaning of a single- and a double-underscore before an object name in Python
Which should I use _foo (an underscore) or __bar (double underscore) for private members ...
4
votes
2answers
1k views
simulate private variables in python [duplicate]
Possible Duplicate:
private members in python
I've got few variables I really want to hide because they do not belong outside my class. Also all such non-documented variables render ...
49
votes
6answers
33k views
Does python have 'private' variables in classes?
I'm coming from the Java world and reading Bruce Eckels' Python 3 patterns idioms.
While reading about classes...it goes on to say that in Python there is no need to declare class variables. You ...
21
votes
4answers
15k views
Defining private module functions in python
According to http://www.faqs.org/docs/diveintopython/fileinfo_private.html:
Like most languages, Python has the
concept of private elements:
Private
functions, which can't be called ...
187
votes
9answers
34k 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 ...
1
vote
3answers
901 views
What is your convention to distinguish between object methods to be called by the outside, and object methods to be called by a subclass?
I know most of the ins and outs of Python's approach to private variables/members/functions/...
However, I can't make my mind up on how to distinguish between methods for external use or subclassing ...
12
votes
3answers
3k views
Python inheritance - how to disable a function
In C++ you can disable a function in parent's class by declaring it as private in the child class. How can this be done in Python? I.E. How can I hide parent's function from child's public interface?
