Changeset 1036
- Timestamp:
- 09/07/06 16:14:33 (7 years ago)
- File:
-
- 1 edited
-
ccsd/trunk/crcnetd/_utils/ccsd_common.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ccsd/trunk/crcnetd/_utils/ccsd_common.py
r997 r1036 486 486 """Creates a new password of the specified length 487 487 488 The password is created of characters returned by the rand.randint function489 with certaineasily confused characters removed.488 The password is created of characters from the set [A-Za-z0-9_] as chosen 489 by the rand.randint function, with some easily confused characters removed. 490 490 """ 491 491 import random 492 492 out = "" 493 exclude = re.compile("[ '`0Ol1:;]")493 exclude = re.compile("[^\w]|[0Ol1_]") 494 494 495 495 len = 0
Note: See TracChangeset
for help on using the changeset viewer.
