Автор: | Дмитрий Шачнев |
---|---|
Группа: | 411 |
Дата: | 2013-10-10 |
Постановка задачи
diff --git a/build/docs/change_log.html b/build/docs/change_log.html | |
index 93b91a1..c4e620f 100644 | |
--- a/build/docs/change_log.html | |
+++ b/build/docs/change_log.html | |
@@ -47,12 +47,12 @@ Broken up into multiple files.</p> | |
<p>Oct 2008: Changed logging behavior to work better with other systems. | |
Refactored tree tarversing. Added treap implementation, then replaced with | |
OrderedDEict. Renamed various processors to better reflect what they actually | |
-do. Refactored footnote ext to match php Extra's output.</p> | |
+do. Refactored footnote ext to match php Extra’s output.</p> |
====================================================================== | |
ERROR: test_format_sparse_config (pandas.tests.test_index.TestMultiIndex) | |
---------------------------------------------------------------------- | |
Traceback (most recent call last): | |
File "/usr/lib/python2.7/dist-packages/pandas/tests/test_index.py", line 1378, in test_format_sparse_config | |
pd.reset_printoptions() | |
File "/usr/lib/python2.7/dist-packages/pandas/core/format.py", line 1643, in reset_printoptions | |
reset_option("^display\.") | |
File "/usr/lib/python2.7/dist-packages/pandas/core/config.py", line 196, in __call__ | |
return self.__func__(*args, **kwds) |
Source: pyqt5 | |
Section: python | |
Priority: optional | |
Maintainer: Ubuntu Developers <[email protected]> | |
XSBC-Original-Maintainer: Debian Python Modules Team <[email protected]> | |
Uploaders: Torsten Marek <[email protected]>, | |
Michael Casadevall <[email protected]>, | |
Bernd Zeimetz <[email protected]>, | |
Scott Kitterman <[email protected]> | |
Build-Depends: dpkg-dev (>= 1.16.1~), |
#include <QtGui/QApplication> | |
#include <QtWebKit/QWebView> | |
int main (int argc, char **argv) { | |
QApplication app(argc, argv); | |
QWidget window; | |
QWebView view(&window); | |
view.setHtml("<code>Test test test...</code>"); | |
window.show(); | |
return app.exec(); |
From 67c9502672a5ee87fe1a7d493fb277fc7ff69cdf Mon Sep 17 00:00:00 2001 | |
From: Dmitry Shachnev <[email protected]> | |
Date: Fri, 11 Jan 2013 15:33:38 +0400 | |
Subject: [PATCH] test_coverage_plugin.py: skip the tests when coverage is not | |
available (closes #597) | |
--- | |
functional_tests/test_coverage_plugin.py | 17 ++++++++++++++++- | |
1 file changed, 16 insertions(+), 1 deletion(-) |
#include <cstdlib> | |
#include <cmath> | |
#include <iostream> | |
#define U 6 | |
#define RMAX 100 // 300 | |
#define K .1 // .5 | |
#define Dx 50 | |
#define Dy 70 | |
#define Dz 80 |
#include <cmath> | |
#include <cstdlib> | |
#include <iostream> | |
/** | |
* Test data: | |
* 70 120 .5 .7 50 70 20 10 30 | |
* W1 = 0.292 | |
* W2 = 0.145 | |
*/ |
#include <cmath> | |
#include <cstdlib> | |
#include <iostream> | |
#ifndef RANGE | |
#define RANGE 10000 | |
#endif | |
#ifndef CORRELATION_OFFSET | |
#define CORRELATION_OFFSET 10 |
#!/usr/bin/python3 | |
# Author: Dmitry Shachnev, 2012 | |
import sys | |
import time | |
import os.path | |
R_NUMBER = 'Номер маршрута' | |
R_DIRECTIONS = 'Маршрут' | |
R_WAY = 'Трасса' |