[EMAIL PROTECTED] schrieb:
> ldap_obj = ldap_obj.simple_bind_s('[EMAIL PROTECTED]',
> 'password')
>
>
> AttributeError: 'NoneType' object has no attribute 'search_Ext_s'
>
dummy = ldap_obj.simple_bind_s('[EMAIL PROTECTED]',
'pa
[EMAIL PROTECTED] schrieb:
> Is there a function/module to find the login name of the user under
> UNIX environment?
http://docs.python.org/lib/os-procinfo.html
http://docs.python.org/lib/module-pwd.html
--
http://mail.python.org/mailman/listinfo/python-list
Steve Holden schrieb:
> Uwe Hoffmann wrote:
>
>> cjl schrieb:
>>
>>
>>>
>>> I do set pythonpath, see above.
>>>
>>
>> is pythonpath really case insensitive on windows ?
>
>
> Only because the Windows filesystem implements
cjl schrieb:
>
>
> I do set pythonpath, see above.
>
is pythonpath really case insensitive on windows ?
--
http://mail.python.org/mailman/listinfo/python-list
Richard Schulman schrieb:
>
> cursor.execute("""select mean_eng_txt from mean
> where mean_id=:arg_1""",arg_1)
cursor.execute("""select mean_eng_txt from mean
where mean_id=:arg_1""",{"arg_1":arg_1})
> Traceback (most recent call last):
>File "oracle_te
Hi,
i have used Pyrex to build some python Extensionclasses. Now i
stumbled over the fact that if a subclass has a __hash__ method the
__richcmp__ of the base is not called.
# pseudocode
class Base:
def __richcmp__():
print 'hi'
class Immutable(Base):
def __hash__()
Robin Becker schrieb:
> Uwe Hoffmann wrote:
>
>> Robin Becker schrieb:
>>
> unfortunately there's no mention of svn handling there and the files
> only show 0.9[.x] versions.
>
at least you can get the sources via subversion and have a look at the
INSTALL fil
Robin Becker schrieb:
> Does anyone know the status of the svn handling version of viewCVS.
http://viewvc.tigris.org/index.html
--
http://mail.python.org/mailman/listinfo/python-list
novice schrieb:
> class Point:
>def _func_that_we_want_(self):
> return ...
return self.__class__.__name__
http://docs.python.org/ref/types.html#l2h-109
--
http://mail.python.org/mailman/listinfo/python-list