473,804 Members | 2,122 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

looking for MOP documentation

hello there.

I've been searching the web (including the www.python.org :) but in vain of
finding recent documentation for the python MOP. I see some information on
python 1.5---is this the best and still valid information today?

sincerely
\kasper

--
Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/
Jul 18 '05 #1
23 3381
kasper graversen wrote:
hello there.

I've been searching the web (including the www.python.org :) but in vain
of finding recent documentation for the python MOP. I see some
information on python 1.5---is this the best and still valid information
today?

sincerely
\kasper


http://www.python.org/2.2.3/descrintro.html#metaclasses
http://www-106.ibm.com/developerworks/library/l-pymeta2

Jul 18 '05 #2
kasper graversen wrote

hello there.

I've been searching the web (including the www.python.org :) but in vain of
finding recent documentation for the python MOP. I see some information on
python 1.5---is this the best and still valid information today?


Erm, what's "MOP" mean? The current python is 2.3, and should probably be
used everywhere possible (1.5 is seriously seriously old)

Anthony
--
Anthony Baxter <an*****@interl ink.com.au>
It's never too late to have a happy childhood.
Jul 18 '05 #3
Anthony Baxter wrote:
kasper graversen wrote

hello there.

I've been searching the web (including the www.python.org :) but in vain of
finding recent documentation for the python MOP. I see some information on
python 1.5---is this the best and still valid information today?


Erm, what's "MOP" mean? The current python is 2.3, and should probably be
used everywhere possible (1.5 is seriously seriously old)


Please don't push a .0 release more aggressively than it really deserves.

(Among, likely, other problems) 2.3 has a memory leak that could cause
long-running network programs to have difficulties. It has been fixed
in CVS, so 2.3.1 will doubtless be better in this area, but some people
should definitely *not* be upgrading to 2.3 just yet.

Not to say 2.3 isn't better by far in many areas, but I'd be cautious
pushing it for "mission critical" stuff just yet.

(I don't have a reference handy, but we found the leak independently
by tracing it to a connect_ex() on a non-blocking socket, then found
a link in Google.)

-Peter
Jul 18 '05 #4
Peter Hansen wrote:

(Among, likely, other problems) 2.3 has a memory leak that could cause
long-running network programs to have difficulties.

(I don't have a reference handy, ...


Here's where we found the reference... first response to

http://www.google.ca/search?q=connect_ex+memory+leak

For the record, here was the near-minimal code which led
us to do the above search:

import socket
def conn():
s = socket.socket(s ocket.AF_INET, socket.SOCKSTRE AM)
try:
s.setblocking(0 )
for i in xrange(100):
s.connect_ex((' 127.0.0.1', 21569))
finally:
s.close()
del s

if __name__ == '__main__':
print 'starting'
try:
while 1:
conn()
finally:
print 'done'
-Peter
Jul 18 '05 #5
On Fri, 12 Sep 2003 14:36:44 -0400, Peter Hansen <pe***@engcorp. com> wrote:
> I've been searching the web (including the www.python.org :) but in

vain of
> finding recent documentation for the python MOP. I see some

information on
> python 1.5---is this the best and still valid information today?


Erm, what's "MOP" mean? The current python is 2.3, and should probably
be
used everywhere possible (1.5 is seriously seriously old)


(Among, likely, other problems) 2.3 has a memory leak that could cause
long-running network programs to have difficulties. It has been fixed
in CVS, so 2.3.1 will doubtless be better in this area, but some people
should definitely *not* be upgrading to 2.3 just yet.


what has all this talk to do with documentation of the MOP???

Jul 18 '05 #6
According to Peter Hansen <pe***@engcorp. com>:
kasper graversen wrote:
On Fri, 12 Sep 2003 14:36:44 -0400, Peter Hansen <pe***@engcorp. com> wrote:
> Erm, what's "MOP" mean?

what has all this talk to do with documentation of the MOP???

Er, if you'll look back, you'll see that Anthony asked what MOP
meant


Meta Object Protocol.
--
Ng Pheng Siong <ng**@netmemeti c.com>

http://firewall.rulemaker.net -+- Manage Your Firewall Rulebase Changes
http://sandbox.rulemaker.net/ngps -+- Open Source Python Crypto & SSL
Jul 18 '05 #7
Ng Pheng Siong wrote:

According to Peter Hansen <pe***@engcorp. com>:
kasper graversen wrote:
On Fri, 12 Sep 2003 14:36:44 -0400, Peter Hansen <pe***@engcorp. com> wrote:
>> Erm, what's "MOP" mean?
what has all this talk to do with documentation of the MOP???

Er, if you'll look back, you'll see that Anthony asked what MOP
meant


Meta Object Protocol.


Thanks, but one might say that this is what it spells, not what it _means_.

At this point, I'm sure google would help, if I felt a driving
need to go and learn what it really means.

-Peter
Jul 18 '05 #8
Anthony Baxter <an*****@interl ink.com.au> writes:
Erm, what's "MOP" mean?


Meta Object Protocol.
Jul 18 '05 #9
Peter Hansen wrote:

Ng Pheng Siong wrote:

According to Peter Hansen <pe***@engcorp. com>:
kasper graversen wrote:
> On Fri, 12 Sep 2003 14:36:44 -0400, Peter Hansen <pe***@engcorp. com> wrote:
> >> Erm, what's "MOP" mean?
> what has all this talk to do with documentation of the MOP???
Er, if you'll look back, you'll see that Anthony asked what MOP
meant


Meta Object Protocol.


Thanks, but one might say that this is what it spells, not what it _means_.

At this point, I'm sure google would help, if I felt a driving
need to go and learn what it really means.


Annoyed that nobody seemed to be willing to actually define this (which
leads me to suspect that none of those involved in the thread actually
*know* what it means, other than to expand the acronym), I did a little
searching and found http://cliki.tunes.org/Meta-Object%20Protocol , which
at least attempts to define it. It still doesn't describe it well enough
for someone to really understand the purpose, the value, the reason for
bothering to do such a thing, but it's better than the definitions offered
so far in this thread...

-Peter
Jul 18 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
2275
by: jodocus | last post by:
hi, I am new to python (but not to programming - have programmed in many other languages like C++/lisp/perl etc.) and I would like to buy a good book. The local bookstore has no books about Python, so I cannot look into a book and see whether I like it. That is why I turned to this newsgroup for advise. I would like a book with a very complete and correct description of the language and the built-in features, and things like how to...
20
3288
by: Daniel R. Smorey Jr. | last post by:
I'm looking for a good place for Python documentation. I'm really lost on why it's so hard to find anything when it comes to me looking up a particular function in Python. My example would be the split() function of the string module. Why can't I just go to www.python.org and click on Search and then type in split and it bring me to the split() function of the string module? Why does it have to be so hard? This is what I get when I...
3
1834
by: Mikey At Work | last post by:
I'm looking for opinions on the several HTML documentation generators available for Python. We're trying to standardize the documentaion used for an upcoming project. Specifically, I'm looking for something very similar to Javadoc in both output and syntax (because most of our team members are very familiar with Javadoc). I've pretty much narrowed it to either PythonDoc or epydoc, but wanted to ask the newsgroup's opinion before making...
75
4674
by: Xah Lee | last post by:
http://python.org/doc/2.4.1/lib/module-re.html http://python.org/doc/2.4.1/lib/node114.html --------- QUOTE The module defines several functions, constants, and an exception. Some of the functions are simplified versions of the full featured methods for compiled regular expressions. Most non-trivial applications always use the compiled form UNQUOTE
5
2864
by: VoiD | last post by:
Aloha! I'm looking for libstdc++ documentation. I've been searching the net for last 2 days! The best thing I can imagine is a downloadable function and class index with at least short descriptions. I got confused when I found out (at http://gcc.gnu.org/onlinedocs/libstdc++/faq/index.html#5_7) that I must pay for this documentation... If anybody asked the same question before I did - please... be human and give me some link :) Thank...
2
1612
by: Andy Meca | last post by:
I wrote a component library in C#. Is there a tool that will generate documentation for me which looks exactly like the Microsoft .NET framework documentation? I saw a third party component that had documentation that looked just like it was from the .NET framework documentation - same exact look and feel as far as the page layout format, etc. That is exactly what I am trying to do. I figured that this was generated with some sort of...
0
1158
by: John DeSoi | last post by:
Hi, I'm working on a new product for PostgreSQL (description below) and I'm looking for a few more Mac users who might be interested in beta testing. The first release will be for Mac OS X 10.2 or later. A Windows version will follow, most likely in November. Drop me an email if you can spare a little time to take a look and provide some feedback. Thanks!
3
1256
by: sh | last post by:
I'm relatively new to VB.NET, although I've been a VB programmer for over 10 years. I'm looking for a controls suite (something like Infragistics or ComponentOne). However, I've been burned before with products that have poor documentation and I don't want to get burned again. I'm not looking for a suite who's main feature is whiz-bang aesthetics. I'm looking for increased functionality, but I don't want to spend hours on end getting it...
4
1547
by: Coleen | last post by:
Hi All :-) I'm not sure where to post this, but my organization is looking for a good software application that is not terribly expensive that allows you to create documentationand help files and is able to be integrated into a .Net application. Any suggestions? Any help, suggestions, links would be greatly appreciated. TIA, Coleen
0
9716
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9595
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10604
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10354
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10359
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
5536
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5675
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4314
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3837
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.