Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for tillaart36

This code assumes that: a) you don't have data that contains a lot of commas and semicolons. In other words, when you look at these delimited files commas or semicolons are generally only seen because they are the delimiters and not in text strings. b) that 256 in the .read() …

Member Avatar for tillaart36
0
2K
Member Avatar for Z8934

I’ve got a piece of third party software containing classes that I want to modify by subclassing. My problem is that one of the third party classes is not accessed directly but returned by the third party class through a method call. So: [code]factory = ThirdParty.Factory() node = factory.getNode() #node …

Member Avatar for Gribouillis
0
172
Member Avatar for harrykokil

Per [url]http://docs.python.org/tutorial/classes.html#inheritance[/url] [code=python]class DerivedClassName(BaseClassName): <statement-1> . . . <statement-N>[/code]

Member Avatar for Z8934
0
78

The End.