On 08/03/12 23:49, Ejaj Hassan wrote:
   I was just going through a book on python and came across this
'disutils'. Can somebody explained to me about this.


I assume you mean distutils? If so here is the official help description:

----------------
DESCRIPTION
    The main package for the Python Module Distribution Utilities.

Normally used from a setup script as

       from distutils.core import setup

       setup (...)
-------------------

So it's a set of tools for distributing your finished code
modules so that other people can easily install them on
their computer.

Now, what else do you need to know?
The more specific the question the more specific the answer...

--
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/

_______________________________________________
Tutor maillist  -  [email protected]
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to