Download:
child 105:a0b4b59d86d5
parent 103:b30120f476e6
104:28caf44e903a
Anton Shestakov <av6@dwimlabs.net>, Wed, 20 Jul 2016 18:56:30 +0800
fruitbar: remove encoding declaration (not necessary, the code is ascii)

4 файлов изменено, 0 вставок(+), 8 удалений(-) [+]
app.py file | annotate | diff | comparison | revisions
fruitbar/crud.py file | annotate | diff | comparison | revisions
fruitbar/indexes.py file | annotate | diff | comparison | revisions
test.py file | annotate | diff | comparison | revisions
--- a/app.py Wed Jul 20 19:01:34 2016 +0800
+++ b/app.py Wed Jul 20 18:56:30 2016 +0800
@@ -1,6 +1,4 @@
#!/usr/bin/env python
-#-*- coding:utf-8 -*-
-
import os
from flask import Flask, g, render_template
--- a/fruitbar/crud.py Wed Jul 20 19:01:34 2016 +0800
+++ b/fruitbar/crud.py Wed Jul 20 18:56:30 2016 +0800
@@ -1,5 +1,3 @@
-#-*- coding:utf-8 -*-
-
from flask import g, request
from flask_restful import Resource
from CodernityDB.database import RecordNotFound, RecordDeleted
--- a/fruitbar/indexes.py Wed Jul 20 19:01:34 2016 +0800
+++ b/fruitbar/indexes.py Wed Jul 20 18:56:30 2016 +0800
@@ -1,5 +1,3 @@
-#-*- coding:utf-8 -*-
-
from hashlib import md5
from CodernityDB.hash_index import HashIndex
--- a/test.py Wed Jul 20 19:01:34 2016 +0800
+++ b/test.py Wed Jul 20 18:56:30 2016 +0800
@@ -1,6 +1,4 @@
#!/usr/bin/env python
-#-*- coding:utf-8 -*-
-
import json
from itertools import chain
from unittest import TestCase, main