Revision 81f7ea25

b/lib/utils/wrapper.py
184 184
  """
185 185
  # pylint: disable=W0212
186 186
  if ((sys.hexversion >= 0x020703F0 and sys.hexversion < 0x03000000) or
187
      sys.hexversion >=0x030203F0):
187
      sys.hexversion >= 0x030203F0):
188 188
    # Python 2.7 automatically resets the RNG on pid changes (i.e. forking)
189 189
    return
190 190

  
b/test/tempfile_fork_unittest.py
48 48

  
49 49
  def testNoReset(self):
50 50
    if ((sys.hexversion >= 0x020703F0 and sys.hexversion < 0x03000000) or
51
        sys.hexversion >=0x030203F0):
51
        sys.hexversion >= 0x030203F0):
52 52
      # We can't test the no_reset case on Python 2.7+
53 53
      return
54 54
    # evil Debian sid...

Also available in: Unified diff