1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-26 18:06:13 +01:00
github.com_openSUSE_osc/osc
Michal Vyskocil d3648be24b python3 compatibility: dict
this patch
 1.) removes the iteritems/itervalues, which were dropped in py3
     items/values are used instead
 2.) add an extra list() in a cases the list-based access is needed
     (included appending, indexing and so)
 3.) changes a sorting idiom in few places
     instead of
     foo = dict.keys()
     foo.sort()
     for i in foo:

     there is a recommended

     for i in sorted(dict.keys()):
 4.) in one occassion it removes a if dict.has_key() by simpler
   dict.get(key, default)
2013-04-16 10:51:17 +02:00
..
util python3 compatibility: dict 2013-04-16 10:51:17 +02:00
__init__.py add vim mode lines to avoid evil tab characters :-) 2010-02-25 09:53:45 +01:00
.gitignore convert svn:ignore to gitignore 2009-12-03 19:19:53 +01:00
babysitter.py - added new function core.run_external which can be used to execute an external program 2013-03-08 00:56:57 +01:00
build.py python3 compatibility: dict 2013-04-16 10:51:17 +02:00
checker.py avoid errors when checking rpm signkeys on files that are not rpm 2012-02-22 13:28:19 +01:00
cmdln.py python3 compatibility: dict 2013-04-16 10:51:17 +02:00
commandline.py python3 compatibility: dict 2013-04-16 10:51:17 +02:00
conf.py Fix typo in default build-root path 2013-03-20 15:43:06 +01:00
core.py python3 compatibility: dict 2013-04-16 10:51:17 +02:00
fetch.py python3 compatibility: dict 2013-04-16 10:51:17 +02:00
meter.py - meter.py: reduced status bar (this one is used if there's no Content-Length header) 2010-09-09 14:58:33 +02:00
OscConfigParser.py - OscConfigParser.__str__: added special handling for continuation lines 2010-12-18 15:12:07 +01:00
oscerr.py - handle errors of source service runs 2011-05-24 10:49:08 +02:00
oscssl.py watchout the BEAST... 2012-07-15 23:20:19 -04:00
oscsslexcp.py - remove shebang line to make rpmlint happy 2010-03-21 22:57:06 +01:00