Initial patch by Kelsey Hightower. Approved by Raymond. A test was
non-trivial to write without calling the private function directly, so
we moved that for later.
archive_dir = os.path.dirname(archive_name)
if not os.path.exists(archive_dir):
- logger.info("creating %s" % archive_dir)
+ if logger is not None:
+ logger.info("creating %s" % archive_dir)
if not dry_run:
os.makedirs(archive_dir)
Library
-------
+- Issue #11045: Protect logging call against None argument.
+
- Issue #11052: Correct IDLE menu accelerators on Mac OS X for Save
commands.