Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 313413 - DEVELOPING small errors
Summary: DEVELOPING small errors
Status: RESOLVED FIXED
Alias: None
Product: Portage Development
Classification: Unclassified
Component: Documentation (show other bugs)
Hardware: All Linux
: High trivial with 1 vote (vote)
Assignee: Portage team
URL:
Whiteboard:
Keywords: InVCS
Depends on:
Blocks:
 
Reported: 2010-04-06 14:56 UTC by Joachim Bartosik (RETIRED)
Modified: 2012-09-09 04:18 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
Chnage == to != where suggested, remove unclear part of ending. (0001-Small-docs-errors.patch,1.14 KB, patch)
2010-04-06 15:17 UTC, Joachim Bartosik (RETIRED)
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Joachim Bartosik (RETIRED) gentoo-dev 2010-04-06 14:56:14 UTC
if foo == None

gets replaced with

if foo is not None:

which does just the oposite

Reproducible: Always




diff --git a/DEVELOPING b/DEVELOPING
index 8286a8b..fc386bc 100644
--- a/DEVELOPING
+++ b/DEVELOPING
@@ -57,7 +57,7 @@ conventions.
 Comparisons
 -----------
 
-if foo == None
+if foo != None
 
 should be replaced with:
 
lines 1-13/13 (END)
Comment 1 Joachim Bartosik (RETIRED) gentoo-dev 2010-04-06 15:14:54 UTC
Also ending is somehow unclear.
Comment 2 Joachim Bartosik (RETIRED) gentoo-dev 2010-04-06 15:17:50 UTC
Created attachment 226737 [details, diff]
Chnage == to != where  suggested, remove unclear part of ending.