﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
33063	Use string module instead of writing all of characters	sammiee5311	nobody	"From

{{{
#!div style=""font-size: 80%""
Code highlighting:
  {{{#!python
  RANDOM_STRING_CHARS = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'
  }}}
}}}

To
{{{
#!div style=""font-size: 80%""
Code highlighting:
  {{{#!python
  RANDOM_STRING_CHARS = string.ascii_letters + string.digits
  }}}
}}}

It looks more clean with string module than writing all characters.


"	Cleanup/optimization	closed	Utilities	3.2	Normal	wontfix			Unreviewed	0	0	0	0	0	0
