Lines Matching defs:process

745             # Child process
747 test_logger.info(r'Child process did not deadlock. \o/')
751 # Parent process
752 test_logger.info(r'Parent process returned from fork. \o/')
823 :param handler: A callable which will be called to process
899 process the request. This handler is called on the
946 process the request.
986 parameter - the request - in order to process the request.
1018 process the request.
1718 "format": "%(asctime)s [%(process)d] [%(levelname)s] %(message)s",
3960 f = logging.Formatter("%(levelname)-15s - %(message) 5s - %(process)03d - %(module) - %(asctime)*.3s")
3961 self.assertEqual(f._fmt, "%(levelname)-15s - %(message) 5s - %(process)03d - %(module) - %(asctime)*.3s")
3962 f = logging.Formatter("%(asctime)*s - %(asctime)*.3s - %(process)-34.33o")
3963 self.assertEqual(f._fmt, "%(asctime)*s - %(asctime)*.3s - %(process)-34.33o")
3964 f = logging.Formatter("%(process)#+027.23X")
3965 self.assertEqual(f._fmt, "%(process)#+027.23X")
3972 f = logging.Formatter("{process:.2f} - {custom.f:.4f}", style="{")
3973 self.assertEqual(f._fmt, "{process:.2f} - {custom.f:.4f}")
3982 f = logging.Formatter("{process!r:4.2}", style="{")
3983 self.assertEqual(f._fmt, "{process!r:4.2}")
3984 f = logging.Formatter("{process!s:<#30,.12f}- {custom:=+#30,.1d} - {module:^30}", style="{")
3985 self.assertEqual(f._fmt, "{process!s:<#30,.12f}- {custom:=+#30,.1d} - {module:^30}")
3986 f = logging.Formatter("{process!s:{w},.{p}}", style="{")
3987 self.assertEqual(f._fmt, "{process!s:{w},.{p}}")
4047 logging.Formatter, '{process:.2ff}', style='{'
4049 self.assertRaises(ValueError, logging.Formatter, '{process:.2Z}', style='{')
4050 self.assertRaises(ValueError, logging.Formatter, '{process!s:<##30,12g}', style='{')
4051 self.assertRaises(ValueError, logging.Formatter, '{process!s:<#30#,12g}', style='{')
4052 self.assertRaises(ValueError, logging.Formatter, '{process!s:{{w}},{{p}}}', style='{')
4057 logging.Formatter, '{process', style='{'
4062 logging.Formatter, 'process}', style='{'
4567 @staticmethod # pickled as target of child process in the following test
4601 # In the main process processName = 'MainProcess'
4634 NOT_NONE(r.process)
4647 NONE(r.process)
5052 def process(self, msg, kwargs):