Merge lp://qastaging/~muktupavels/compiz/pygobject-warnings into lp://qastaging/compiz/0.9.13
Proposed by
Alberts Muktupāvels
| Status: | Merged |
|---|---|
| Approved by: | Dmitry Shachnev |
| Approved revision: | 4203 |
| Merged at revision: | 4204 |
| Proposed branch: | lp://qastaging/~muktupavels/compiz/pygobject-warnings |
| Merge into: | lp://qastaging/compiz/0.9.13 |
| Diff against target: |
525 lines (+68/-71) 4 files modified
compizconfig/ccsm/ccm/Pages.py (+35/-38) compizconfig/ccsm/ccm/Settings.py (+15/-15) compizconfig/ccsm/ccm/Utils.py (+1/-1) compizconfig/ccsm/ccm/Widgets.py (+17/-17) |
| To merge this branch: | bzr merge lp://qastaging/~muktupavels/compiz/pygobject-warnings |
| Related bugs: |
| Reviewer | Review Type | Date Requested | Status |
|---|---|---|---|
| Dmitry Shachnev | Approve | ||
|
Review via email:
|
|||
Commit message
Fix many PyGTKDeprecatio
To post a comment you must log in.

For future, it is better to remove whitespace when passing function arguments. /www.python. org/dev/ peps/pep- 0008/#other- recommendations:
Quoting from https:/
Yes:
def complex(real, imag=0.0):
return magic(r=real, i=imag)
No:
def complex(real, imag = 0.0):
return magic(r = real, i = imag)
Anyway approving because it is not related to your fixes.