2019-10-01 23:42:35 +02:00
|
|
|
#!/usr/bin/env python3
|
2015-09-28 19:57:40 +02:00
|
|
|
|
2019-10-01 23:42:35 +02:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
BASE_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "../..")
|
|
|
|
sys.path.append(BASE_DIR)
|
|
|
|
|
2020-01-08 00:06:39 +01:00
|
|
|
from scripts.lib.setup_path import setup_path
|
|
|
|
|
|
|
|
setup_path()
|
|
|
|
|
2019-10-01 23:42:35 +02:00
|
|
|
from zproject import settings
|
2020-01-02 22:56:33 +01:00
|
|
|
import pylibmc
|
2019-10-01 23:42:35 +02:00
|
|
|
|
2020-01-02 22:56:33 +01:00
|
|
|
pylibmc.Client(
|
2020-01-14 03:03:14 +01:00
|
|
|
[settings.MEMCACHED_LOCATION],
|
2020-01-02 23:19:27 +01:00
|
|
|
binary=True,
|
|
|
|
username=settings.MEMCACHED_USERNAME,
|
|
|
|
password=settings.MEMCACHED_PASSWORD,
|
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
|
|
|
behaviors=settings.CACHES["default"]["OPTIONS"], # type: ignore[index] # settings not typed properly
|
2020-01-02 22:56:33 +01:00
|
|
|
).flush_all()
|