summaryrefslogtreecommitdiff
path: root/source3/python/setup.py
AgeCommit message (Collapse)AuthorFilesLines
2003-03-24Started working on python routines to add and delete domain users.Tim Potter1-0/+1
Unfortunately users get created with the ACB mask set to disabled and must change password. The set_user_info2 call required to fix this doesn't quite work yet... (This used to be commit 55a341a367a7d1b18ae7ef04678479eb74b68ea3)
2003-03-19Remove py_samba.c experiment - it didn't work.Tim Potter1-12/+1
(This used to be commit e69c061211e9c64201b54087d1381740d82cbbcd)
2003-02-18Cleanup of header files for python extensions.Tim Potter1-1/+4
- combine py_foo_proto.h and py_foo.h - move #include of Python.h into one place so we can get rid of that annoying compiler warning about HAVE_FSTAT being redefined (This used to be commit 0659351b251aee438bb9e92682bc445f164923a5)
2003-02-17Added SRVSVC pipe support. I've started implementing NetServerGetInfo()Tim Potter1-0/+10
(This used to be commit 8e0d781995b56dd1cd348baadd494bb8e64c10bc)
2002-12-11Some more tweaking for compilation of py_tdbpack.Tim Potter1-1/+1
(This used to be commit 89be695b2997e97dfc40afd17bb61b59b85634e4)
2002-12-04FUNCTION_MACRO change broke the Python modules.Tim Potter1-1/+2
Also fix up string pasting (I thought this should only be a warning?) (This used to be commit 739285ff694e9ffd317ad47aec373e2007c20f45)
2002-10-21The libsmb module uses py_ntsec.oTim Potter1-1/+2
(This used to be commit e27d3d20e3c51fc04f37d92c24f38f91b2d1e1e4)
2002-09-19Remove hardcoded -I stuff. Hooray!Tim Potter1-9/+9
(This used to be commit 105ff7c5400a6b79613b6a3b72808124b17ddc60)
2002-09-11Implemented getpw{nam,uid} functions.Tim Potter1-0/+2
(This used to be commit 19adbf1faed3d076207ec55e398f15f87d48c9f7)
2002-09-09Put all Python modules into the 'samba' subpackage. Now you need toMartin Pool1-1/+9
write import samba.tdbutil samba.tdbutil.pack('f', ['hello']) You need 'cvs update -d' to get the new subdirectory for this to build properly. (This used to be commit 0d3276355e0511d6aff110a3943199629b3c00fd)
2002-09-09Build py_tdbpack as well.Martin Pool1-0/+5
(This used to be commit fc5e8b8f672d461809f113fe14435841608b046f)
2002-09-09Python's setup.py does not need to be munged by configure.in -- it isMartin Pool1-0/+168
sufficient to just pass the relevant variables to Python from the Makefile. Therefore, remove setup.py.in. (This used to be commit 8bebe9ee2b6bd56c297acc6b01cb0856aad1c4f3)