diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-03-29 15:24:25 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-03-29 15:24:25 (GMT) |
commit | 5b63acd31e0e40c1a9a9e9762905b0054ff37994 (patch) | |
tree | 763a6e10d4c0fa64797f5311491a3cbeb0f7e5d9 /Demo | |
parent | 672fbf519568bc295aa64992dcbabe0eebccb5fc (diff) | |
download | cpython-5b63acd31e0e40c1a9a9e9762905b0054ff37994.zip cpython-5b63acd31e0e40c1a9a9e9762905b0054ff37994.tar.gz cpython-5b63acd31e0e40c1a9a9e9762905b0054ff37994.tar.bz2 |
#2503 make singletons compared with "is" not == or !=
Thanks to Wummel for the patch
Diffstat (limited to 'Demo')
-rwxr-xr-x | Demo/classes/Dbm.py | 2 | ||||
-rw-r--r-- | Demo/curses/ncurses.py | 2 | ||||
-rw-r--r-- | Demo/rpc/mountclient.py | 2 | ||||
-rw-r--r-- | Demo/rpc/nfsclient.py | 6 | ||||
-rw-r--r-- | Demo/rpc/rpc.py | 8 | ||||
-rw-r--r-- | Demo/tkinter/guido/paint.py | 2 |
6 files changed, 11 insertions, 11 deletions
diff --git a/Demo/classes/Dbm.py b/Demo/classes/Dbm.py index 482806a..892c103 100755 --- a/Demo/classes/Dbm.py +++ b/Demo/classes/Dbm.py @@ -50,7 +50,7 @@ def test(): value = d[key] print 'currently:', value value = input('value: ') - if value == None: + if value is None: del d[key] else: d[key] = value diff --git a/Demo/curses/ncurses.py b/Demo/curses/ncurses.py index c9394d0..8af3b42 100644 --- a/Demo/curses/ncurses.py +++ b/Demo/curses/ncurses.py @@ -9,7 +9,7 @@ import curses from curses import panel def wGetchar(win = None): - if win == None: win = stdscr + if win is None: win = stdscr return win.getch() def Getchar(): diff --git a/Demo/rpc/mountclient.py b/Demo/rpc/mountclient.py index 318a9d9..4e8d92a 100644 --- a/Demo/rpc/mountclient.py +++ b/Demo/rpc/mountclient.py @@ -100,7 +100,7 @@ class PartialMountClient: # This function is called to cough up a suitable # authentication object for a call to procedure 'proc'. def mkcred(self): - if self.cred == None: + if self.cred is None: self.cred = rpc.AUTH_UNIX, rpc.make_auth_unix_default() return self.cred diff --git a/Demo/rpc/nfsclient.py b/Demo/rpc/nfsclient.py index c4387b4..09e78dd 100644 --- a/Demo/rpc/nfsclient.py +++ b/Demo/rpc/nfsclient.py @@ -129,7 +129,7 @@ class NFSClient(UDPClient): self.unpacker = NFSUnpacker('') def mkcred(self): - if self.cred == None: + if self.cred is None: self.cred = rpc.AUTH_UNIX, rpc.make_auth_unix_default() return self.cred @@ -170,7 +170,7 @@ class NFSClient(UDPClient): for fileid, name, cookie in entries: list.append((fileid, name)) last_cookie = cookie - if eof or last_cookie == None: + if eof or last_cookie is None: break ra = (ra[0], last_cookie, ra[2]) return list @@ -184,7 +184,7 @@ def test(): else: filesys = None from mountclient import UDPMountClient, TCPMountClient mcl = TCPMountClient(host) - if filesys == None: + if filesys is None: list = mcl.Export() for item in list: print item diff --git a/Demo/rpc/rpc.py b/Demo/rpc/rpc.py index 141fe09..0a14bf2 100644 --- a/Demo/rpc/rpc.py +++ b/Demo/rpc/rpc.py @@ -264,13 +264,13 @@ class Client: def mkcred(self): # Override this to use more powerful credentials - if self.cred == None: + if self.cred is None: self.cred = (AUTH_NULL, make_auth_null()) return self.cred def mkverf(self): # Override this to use a more powerful verifier - if self.verf == None: + if self.verf is None: self.verf = (AUTH_NULL, make_auth_null()) return self.verf @@ -321,7 +321,7 @@ last_resv_port_tried = None def bindresvport(sock, host): global last_resv_port_tried FIRST, LAST = 600, 1024 # Range of ports to try - if last_resv_port_tried == None: + if last_resv_port_tried is None: import os last_resv_port_tried = FIRST + os.getpid() % (LAST-FIRST) for i in range(last_resv_port_tried, LAST) + \ @@ -814,7 +814,7 @@ class UDPServer(Server): def session(self): call, host_port = self.sock.recvfrom(8192) reply = self.handle(call) - if reply != None: + if reply is not None: self.sock.sendto(reply, host_port) diff --git a/Demo/tkinter/guido/paint.py b/Demo/tkinter/guido/paint.py index d46e20b..7b2e814 100644 --- a/Demo/tkinter/guido/paint.py +++ b/Demo/tkinter/guido/paint.py @@ -50,7 +50,7 @@ def b1up(event): def motion(event): if b1 == "down": global xold, yold - if xold != None and yold != None: + if xold is not None and yold is not None: event.widget.create_line(xold,yold,event.x,event.y,smooth=TRUE) # here's where you draw it. smooth. neat. xold = event.x |