diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/phpsec/phpsec.rand.php b/phpsec/phpsec.rand.php
index <HASH>..<HASH> 100644
--- a/phpsec/phpsec.rand.php
+++ b/phpsec/phpsec.rand.php
@@ -3,7 +3,7 @@
phpSec - A PHP security library
@author Audun Larsen <larsen@xqus.com>
- @copyright Copyright (c) Audun Larsen, 2011
+ @copyright Copyright (c) ... | Updates URL to the blogpost by Enrico Zimuel. |
diff --git a/spec/support/star_wars/schema.rb b/spec/support/star_wars/schema.rb
index <HASH>..<HASH> 100644
--- a/spec/support/star_wars/schema.rb
+++ b/spec/support/star_wars/schema.rb
@@ -17,7 +17,6 @@ module StarWars
global_id_field :id
field :name, types.String
field :planet, types.String
- conne... | test(BaseType) show bug on self-referenctial connections |
diff --git a/activerecord/lib/active_record/railties/collection_cache_association_loading.rb b/activerecord/lib/active_record/railties/collection_cache_association_loading.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/railties/collection_cache_association_loading.rb
+++ b/activerecord/lib/active_r... | Remove hash deconstruction
I don't think this hash deconstruction buys us much in terms of
readability. We only need two parameters, the rest are ignored, and on
top of that we have to allocate a hash. Convert to positional
parameters instead. |
diff --git a/kontrol/storage.go b/kontrol/storage.go
index <HASH>..<HASH> 100644
--- a/kontrol/storage.go
+++ b/kontrol/storage.go
@@ -2,6 +2,7 @@ package kontrol
import (
"errors"
+ "net/http"
"strings"
"time"
@@ -44,6 +45,10 @@ func NewEtcd(machines []string) (*Etcd, error) {
return nil, errors.New("can... | kontrol: checkRetry is spamming etcd
Disable it by returning simply an error. Otherwise subsequent calls are
made which are ddosing the server. go-etcd should be smart, but is not. |
diff --git a/tests/test_alignmentSimulationRandomSeed.py b/tests/test_alignmentSimulationRandomSeed.py
index <HASH>..<HASH> 100644
--- a/tests/test_alignmentSimulationRandomSeed.py
+++ b/tests/test_alignmentSimulationRandomSeed.py
@@ -86,8 +86,8 @@ class test_simulateAlignmentRandomSeed_ExpCM(unittest.TestCase):
... | changed assert to self.assertTrue/self.assertFalse in random seed test |
diff --git a/lib/backburner.js b/lib/backburner.js
index <HASH>..<HASH> 100644
--- a/lib/backburner.js
+++ b/lib/backburner.js
@@ -39,9 +39,6 @@ export default function Backburner(queueNames, options) {
};
}
-// ms of delay before we conclude a timeout was lost
-var TIMEOUT_STALLED_THRESHOLD = 1000;
-
Backburner... | Remove dead code used for dropping stalled timeouts |
diff --git a/pymatgen/analysis/chemenv/connectivity/connected_components.py b/pymatgen/analysis/chemenv/connectivity/connected_components.py
index <HASH>..<HASH> 100644
--- a/pymatgen/analysis/chemenv/connectivity/connected_components.py
+++ b/pymatgen/analysis/chemenv/connectivity/connected_components.py
@@ -285,10 +2... | Fixed minor issue in connected_components. |
diff --git a/lib/mongoid/slug/criterion.rb b/lib/mongoid/slug/criterion.rb
index <HASH>..<HASH> 100644
--- a/lib/mongoid/slug/criterion.rb
+++ b/lib/mongoid/slug/criterion.rb
@@ -83,7 +83,7 @@ module Mongoid
end
def for_slugs(slugs)
- where({ _slugs: { '$in' => slugs } })
+ where({ _slugs: { '$in'... | Limit the query in #find to at most the number of suppled params/slugs. |
diff --git a/examples/v3arch/asyncore/agent/cmdrsp/multiple-usm-users.py b/examples/v3arch/asyncore/agent/cmdrsp/multiple-usm-users.py
index <HASH>..<HASH> 100644
--- a/examples/v3arch/asyncore/agent/cmdrsp/multiple-usm-users.py
+++ b/examples/v3arch/asyncore/agent/cmdrsp/multiple-usm-users.py
@@ -15,6 +15,7 @@
#
# $... | missing snmpwalk command added |
diff --git a/app/services/foreman_ansible/ansible_report_importer.rb b/app/services/foreman_ansible/ansible_report_importer.rb
index <HASH>..<HASH> 100644
--- a/app/services/foreman_ansible/ansible_report_importer.rb
+++ b/app/services/foreman_ansible/ansible_report_importer.rb
@@ -18,6 +18,10 @@ module ForemanAnsible
... | Fixes #<I> - Ansible can submit ConfigReport's too |
diff --git a/lib/tilelive/tile.js b/lib/tilelive/tile.js
index <HASH>..<HASH> 100644
--- a/lib/tilelive/tile.js
+++ b/lib/tilelive/tile.js
@@ -71,4 +71,12 @@ Tile.prototype.render = function(callback) {
);
};
+Tile.prototype.getMap = function(callback) {
+ Pool.acquire(this.type, this.datasource, this.option... | expose a function to get the map for a given tile |
diff --git a/acos_client/errors.py b/acos_client/errors.py
index <HASH>..<HASH> 100644
--- a/acos_client/errors.py
+++ b/acos_client/errors.py
@@ -131,3 +131,7 @@ class ACOSSystemNotReady(ACOSException):
class ACOSSystemIsBusy(ACOSException):
pass
+
+
+class LicenseOptionNotAllowed(ACOSException):
+ pass
dif... | Added error for scenario where a glm license option has been set but is not allowed by the license type |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -24,7 +24,7 @@ module.exports = {
const app = express();
const HOTE = 'localhost';
- const PORT = 10500;
+ const PORT = 9220;
/**
* Sur appel de l'URL /abc | [fix] duniter-ui should listen on port <I> |
diff --git a/openvidu-server/docker/openvidu-health-checker/openvidu_helth_check.py b/openvidu-server/docker/openvidu-health-checker/openvidu_helth_check.py
index <HASH>..<HASH> 100644
--- a/openvidu-server/docker/openvidu-health-checker/openvidu_helth_check.py
+++ b/openvidu-server/docker/openvidu-health-checker/openv... | deployment: find_element instead of find_elements in openvidu_health_check |
diff --git a/lib/ronin/installation.rb b/lib/ronin/installation.rb
index <HASH>..<HASH> 100644
--- a/lib/ronin/installation.rb
+++ b/lib/ronin/installation.rb
@@ -96,8 +96,9 @@ module Ronin
if Installation.gems.empty?
# if there are no gems installed, do a raw Dir.glob
root_dir = File.expand_pa... | Only pass back the found sub-paths from Installation.each_file. |
diff --git a/app/models/fluentd/agent/td_agent.rb b/app/models/fluentd/agent/td_agent.rb
index <HASH>..<HASH> 100644
--- a/app/models/fluentd/agent/td_agent.rb
+++ b/app/models/fluentd/agent/td_agent.rb
@@ -36,6 +36,7 @@ class Fluentd
Bundler.with_clean_env do
spawn(cmd)
end
+ sleep ... | Don't too quickly response of td-agent start/stop/restart |
diff --git a/Classes/ViewHelpers/HtmlViewHelper.php b/Classes/ViewHelpers/HtmlViewHelper.php
index <HASH>..<HASH> 100644
--- a/Classes/ViewHelpers/HtmlViewHelper.php
+++ b/Classes/ViewHelpers/HtmlViewHelper.php
@@ -38,7 +38,8 @@ class Tx_HappyFeet_ViewHelpers_HtmlViewHelper extends \TYPO3\CMS\Fluid\ViewHelpe
* @p... | fix checkstyle warning "Opening brace should be on a new line" |
diff --git a/data/handleDB.php b/data/handleDB.php
index <HASH>..<HASH> 100644
--- a/data/handleDB.php
+++ b/data/handleDB.php
@@ -1984,5 +1984,5 @@ class DbHandleApplication extends Application
}
}
-$application = new DbHandleApplication('Database handler for CompatInfo', '1.28.0');
+$application = new DbHandl... | Bump new version <I> |
diff --git a/examples/benchmarks/json/cpu.py b/examples/benchmarks/json/cpu.py
index <HASH>..<HASH> 100755
--- a/examples/benchmarks/json/cpu.py
+++ b/examples/benchmarks/json/cpu.py
@@ -44,6 +44,10 @@ except:
def parse_time(_json_string, _iterations):
return float('inf')
+ @staticmethod
... | Added version to CPU benchmark stubs. |
diff --git a/skyfield/timelib.py b/skyfield/timelib.py
index <HASH>..<HASH> 100644
--- a/skyfield/timelib.py
+++ b/skyfield/timelib.py
@@ -3,7 +3,7 @@ import datetime as dt_module
import re
from collections import namedtuple
from datetime import date, datetime
-from numpy import (array, concatenate, cos, float_, int... | Fix new internal "UTC seconds" on <I> bit platforms |
diff --git a/spyder/app/mainwindow.py b/spyder/app/mainwindow.py
index <HASH>..<HASH> 100644
--- a/spyder/app/mainwindow.py
+++ b/spyder/app/mainwindow.py
@@ -1235,9 +1235,6 @@ class MainWindow(QMainWindow):
logger.info("Setting up window...")
self.setup_layout(default=False)
- if self.spl... | Main Window: Hide splash screen in post_visible_setup
This maintains the splash visible until the very last second before
loading the previous session. |
diff --git a/internetarchive/item.py b/internetarchive/item.py
index <HASH>..<HASH> 100644
--- a/internetarchive/item.py
+++ b/internetarchive/item.py
@@ -337,6 +337,8 @@ class Item(object):
ignore_bucket=ignore_bucket)
request = Request('PUT', endpoint, headers=headers)
... | Added comment about why we are using `contextlib.closing()` in the `upload_file()` method (StringIO). |
diff --git a/src/Illuminate/Database/Eloquent/Model.php b/src/Illuminate/Database/Eloquent/Model.php
index <HASH>..<HASH> 100755
--- a/src/Illuminate/Database/Eloquent/Model.php
+++ b/src/Illuminate/Database/Eloquent/Model.php
@@ -332,6 +332,7 @@ abstract class Model implements ArrayAccess, Arrayable, Jsonable, JsonSer... | reset global scopes when booted models get cleared |
diff --git a/hadoop/src/main/java/water/hadoop/h2odriver.java b/hadoop/src/main/java/water/hadoop/h2odriver.java
index <HASH>..<HASH> 100644
--- a/hadoop/src/main/java/water/hadoop/h2odriver.java
+++ b/hadoop/src/main/java/water/hadoop/h2odriver.java
@@ -138,7 +138,7 @@ public class h2odriver extends Configured impleme... | Rename swallowed exceptions to not be named _. Java 8 change.
No semantic change. |
diff --git a/menu/Container.php b/menu/Container.php
index <HASH>..<HASH> 100644
--- a/menu/Container.php
+++ b/menu/Container.php
@@ -359,7 +359,7 @@ class Container extends \yii\base\Component implements ArrayAccess
if (empty($requestPath)) {
$home = $this->getHome();
if (!$home) {
... | changed menu exception to NotFoundHttpException to hide informations
from api as those exception are not system errors. |
diff --git a/bench.py b/bench.py
index <HASH>..<HASH> 100644
--- a/bench.py
+++ b/bench.py
@@ -29,7 +29,7 @@ def timed(fn):
start = time.time()
fn(*args, **kwargs)
times.append(time.time() - start)
- print fn.__name__, round(sum(times) / N, 3)
+ print(fn.__name__, ro... | python 3 fix for bench.py |
diff --git a/src/RouteConditionApplier.php b/src/RouteConditionApplier.php
index <HASH>..<HASH> 100644
--- a/src/RouteConditionApplier.php
+++ b/src/RouteConditionApplier.php
@@ -63,7 +63,18 @@ class RouteConditionApplier
public function getActions($action)
{
- return $this->actions[$action] ?? funct... | make controller actions be matched with patterns |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -21,7 +21,6 @@ tests_require = [
'isort>=4.2.2',
'jsonresolver[jsonschema]>=0.2.1',
'pydocstyle>=2.0.0',
- 'pytest-cache>=1.0',
'pytest-cov>=1.8.0',
'pytest-pep8>=1.0.6',
'pytest>=2.8.0', | installation: removed pytest-cache dependency |
diff --git a/tests/VatCalculatorTest.php b/tests/VatCalculatorTest.php
index <HASH>..<HASH> 100644
--- a/tests/VatCalculatorTest.php
+++ b/tests/VatCalculatorTest.php
@@ -921,6 +921,6 @@ class VatCalculatorTest extends PHPUnit
$vatCalculator = new VatCalculator();
$result = $vatCalculator->calculate($... | Update VatCalculatorTest.php |
diff --git a/tohu/base_NEW.py b/tohu/base_NEW.py
index <HASH>..<HASH> 100644
--- a/tohu/base_NEW.py
+++ b/tohu/base_NEW.py
@@ -176,13 +176,13 @@ class ClonedGenerator(TohuUltraBaseGenerator):
self.parent = parent
self.gen = parent.spawn(dependency_mapping=dict())
- def __repr__(self):
- re... | Tweak format method for ClonedGenerator (support short/long format) |
diff --git a/src/kundera-cassandra/cassandra-pelops/src/test/java/com/impetus/kundera/query/KunderaQueryTest.java b/src/kundera-cassandra/cassandra-pelops/src/test/java/com/impetus/kundera/query/KunderaQueryTest.java
index <HASH>..<HASH> 100644
--- a/src/kundera-cassandra/cassandra-pelops/src/test/java/com/impetus/kund... | fixed testcases for jpql expression query |
diff --git a/test/Select-test.js b/test/Select-test.js
index <HASH>..<HASH> 100644
--- a/test/Select-test.js
+++ b/test/Select-test.js
@@ -2051,8 +2051,6 @@ describe('Select', () => {
{ value: 'four', label: 'Four' }
];
- onChange.reset();
-
// Render an instance of the component
wrapper = createCo... | Don't need to reset onChange spy |
diff --git a/sksurv/__init__.py b/sksurv/__init__.py
index <HASH>..<HASH> 100644
--- a/sksurv/__init__.py
+++ b/sksurv/__init__.py
@@ -2,6 +2,6 @@ from pkg_resources import get_distribution, DistributionNotFound
try:
__version__ = get_distribution('scikit-survival').version
-except DistributionNotFound:
+except... | Exclude unknown __version__ from coverage |
diff --git a/backtrader/brokers/bbroker.py b/backtrader/brokers/bbroker.py
index <HASH>..<HASH> 100644
--- a/backtrader/brokers/bbroker.py
+++ b/backtrader/brokers/bbroker.py
@@ -476,7 +476,7 @@ class BackBroker(bt.BrokerBase):
def _ocoize(self, order, oco):
oref = order.ref
if oco is None:
- ... | Fix OCO child order cancel (#<I>) |
diff --git a/src/Route.php b/src/Route.php
index <HASH>..<HASH> 100644
--- a/src/Route.php
+++ b/src/Route.php
@@ -320,7 +320,9 @@ class Route {
$getModified = true;
}
}
- $this->path = rtrim($this->path, '/');
+ if ($this->path != '/') {
+ $this->path = r... | let root keep trailing (only) forward slash |
diff --git a/internal/lang/funcs/crypto.go b/internal/lang/funcs/crypto.go
index <HASH>..<HASH> 100644
--- a/internal/lang/funcs/crypto.go
+++ b/internal/lang/funcs/crypto.go
@@ -248,6 +248,7 @@ func makeFileHashFunction(baseDir string, hf func() hash.Hash, enc func([]byte)
if err != nil {
return cty.UnknownV... | funcs: defer close file in funcs
Files opened by these two functions were not being closed,
leaking file descriptors. Close files that were opened when the
function exist. |
diff --git a/src/utils.js b/src/utils.js
index <HASH>..<HASH> 100644
--- a/src/utils.js
+++ b/src/utils.js
@@ -17,10 +17,10 @@ function getCollatorComparator() {
function sortCompare(order) {
return (a, b) => {
- if (a.data === null) a.data = '';
- if (b.data === null) b.data = '';
+ var aData = (a.data ... | fix sort error (#<I>) |
diff --git a/usr/share/lib/img_proof/tests/SLES/conftest.py b/usr/share/lib/img_proof/tests/SLES/conftest.py
index <HASH>..<HASH> 100644
--- a/usr/share/lib/img_proof/tests/SLES/conftest.py
+++ b/usr/share/lib/img_proof/tests/SLES/conftest.py
@@ -511,7 +511,8 @@ BASE_15_SP4_HPC = [
if 'Python2' not in repo
]
SLE... | Update repo test for <I> SP4
- CAP has been dropped as a product and the related module that provided tools
in SLES is no longer released. |
diff --git a/lib/copymitter.js b/lib/copymitter.js
index <HASH>..<HASH> 100644
--- a/lib/copymitter.js
+++ b/lib/copymitter.js
@@ -143,7 +143,7 @@
fs.stat(from, function(error, stat) {
if (!is(error))
fs.unlink(to, function(error) {
- if (error && /^E(ISDIR|NOEN... | fix(copymitter) unlink: regexp |
diff --git a/src/request/Uri.php b/src/request/Uri.php
index <HASH>..<HASH> 100644
--- a/src/request/Uri.php
+++ b/src/request/Uri.php
@@ -26,6 +26,7 @@ declare(strict_types=1);
namespace froq\http\request;
+use froq\util\Arrays;
use froq\common\interfaces\Stringable;
use froq\collection\ComponentCollection;
us... | request.Uri: drop non-used components. |
diff --git a/src/commands/helpers/defaultPrompt.js b/src/commands/helpers/defaultPrompt.js
index <HASH>..<HASH> 100644
--- a/src/commands/helpers/defaultPrompt.js
+++ b/src/commands/helpers/defaultPrompt.js
@@ -3,23 +3,23 @@
*/
export default [{
type: 'input',
- name: 'rocAppName',
- message: 'What\'s the... | Renamed the default variable names for templates and better text |
diff --git a/config.php b/config.php
index <HASH>..<HASH> 100644
--- a/config.php
+++ b/config.php
@@ -34,7 +34,6 @@ return [
],
'services' => [
'database' => ConnectionManager::class,
- 'errors' => ErrorStack::class,
'model_driver' => ModelDriver::class,
'auth' => Auth::cla... | remove deprecated error stack service from test bench |
diff --git a/theanets/feedforward.py b/theanets/feedforward.py
index <HASH>..<HASH> 100644
--- a/theanets/feedforward.py
+++ b/theanets/feedforward.py
@@ -284,7 +284,7 @@ class Network(object):
k = len(self.layers) // 2
encode = np.asarray(self.layers[:k])
decode = np.asarray(self... | Use equality with all() for palindrome check. |
diff --git a/ReactNativeClient/lib/components/screens/config.js b/ReactNativeClient/lib/components/screens/config.js
index <HASH>..<HASH> 100644
--- a/ReactNativeClient/lib/components/screens/config.js
+++ b/ReactNativeClient/lib/components/screens/config.js
@@ -447,7 +447,7 @@ class ConfigScreenComponent extends BaseS... | Mobile: Dev fix: Add missing key |
diff --git a/extensions/DOMAPI/DOMAPI.moonshine.js b/extensions/DOMAPI/DOMAPI.moonshine.js
index <HASH>..<HASH> 100644
--- a/extensions/DOMAPI/DOMAPI.moonshine.js
+++ b/extensions/DOMAPI/DOMAPI.moonshine.js
@@ -28,7 +28,8 @@
mt = new shine.Table({
__index: function (t, key) {
- var property = obj[key];
+ ... | Fix to add constructors' static methods to proxy functions. |
diff --git a/namedstruct/namedstruct.py b/namedstruct/namedstruct.py
index <HASH>..<HASH> 100644
--- a/namedstruct/namedstruct.py
+++ b/namedstruct/namedstruct.py
@@ -1771,8 +1771,8 @@ class nstruct(typedef):
lastinline_properties = []
seqs = []
endian = arguments.get('endian', '>')
- ... | BUG FIX: allow empty structs, automatically set inline = False |
diff --git a/chirptext/leutile.py b/chirptext/leutile.py
index <HASH>..<HASH> 100755
--- a/chirptext/leutile.py
+++ b/chirptext/leutile.py
@@ -135,10 +135,13 @@ class Counter(PythonCounter):
order_list.append([x, self[x]])
return order_list
- def summarise(self, report=None, byfreq=True):... | fixed: byfreq doesn't work in Counter.summarise(). added kwarg limit |
diff --git a/features/support/custom_main.rb b/features/support/custom_main.rb
index <HASH>..<HASH> 100644
--- a/features/support/custom_main.rb
+++ b/features/support/custom_main.rb
@@ -6,7 +6,11 @@ require 'stringio'
class CustomMain
def initialize(argv, stdin, stdout, stderr, kernel)
- @argv, @stdin, @stdou... | Fixed offenses for Performance/ParallelAssignment |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -23,7 +23,7 @@ setup(
tests_require=[
"Django>=1.7",
"django-reversion>=1.8.1",
- "pinax-invitations>=4.0.0",
+ "pinax-invitations>=4.0.1",
"unicode-slugify>=0.1.1",
"Pill... | Bump to corrected pinax-invitations |
diff --git a/salt/states/pip_state.py b/salt/states/pip_state.py
index <HASH>..<HASH> 100644
--- a/salt/states/pip_state.py
+++ b/salt/states/pip_state.py
@@ -327,7 +327,7 @@ def installed(name,
ret['comment'] = ' '.join(comments)
else:
if not prefix:
- pkg_list = []
+ ... | despite the name, pkg_list is a dict; initialize accordingly |
diff --git a/Core/Router/Router.php b/Core/Router/Router.php
index <HASH>..<HASH> 100755
--- a/Core/Router/Router.php
+++ b/Core/Router/Router.php
@@ -96,7 +96,7 @@ class Router extends \AltoRouter implements \ArrayAccess
*
* @see \AltoRouter::generate()
*/
- public function generate(string $routeN... | Corrects signature of generate() to match with parent class |
diff --git a/spyder/plugins/variableexplorer/plugin.py b/spyder/plugins/variableexplorer/plugin.py
index <HASH>..<HASH> 100644
--- a/spyder/plugins/variableexplorer/plugin.py
+++ b/spyder/plugins/variableexplorer/plugin.py
@@ -37,7 +37,7 @@ dependencies.add("pympler", "pympler",
_("Development tool to... | PR: Correct Pimpler REQVER
Correct PR #<I> error |
diff --git a/jsftp.js b/jsftp.js
index <HASH>..<HASH> 100644
--- a/jsftp.js
+++ b/jsftp.js
@@ -492,7 +492,7 @@ var Ftp = module.exports = function(cfg) {
// 'STAT' command. We use 'LIST' instead.
if (err && data.code === 502)
self.list(filePath, function(err, data) {
- ... | Fixed bug in 'list' command fallback in ls method. |
diff --git a/src/ai/backend/common/types.py b/src/ai/backend/common/types.py
index <HASH>..<HASH> 100644
--- a/src/ai/backend/common/types.py
+++ b/src/ai/backend/common/types.py
@@ -18,6 +18,8 @@ import uuid
import attr
+from .docker import ImageRef
+
__all__ = (
'aobject',
'DeviceId',
@@ -580,6 +582,7... | Add package_directory to KernelCreationConfig |
diff --git a/code/forms/GridFieldSortableRows.php b/code/forms/GridFieldSortableRows.php
index <HASH>..<HASH> 100644
--- a/code/forms/GridFieldSortableRows.php
+++ b/code/forms/GridFieldSortableRows.php
@@ -119,7 +119,7 @@ class GridFieldSortableRows implements GridField_HTMLProvider, GridField_ActionP
$headerState ... | Use Sort of GridField Header (#<I>)
When not in 'Drag&Drop reordering' mode ('sortableToggle' is false) and a SortColumn is set by GridField's header, this last one should be used; otherwise, when the user clicks on a sortable header, the list is reloaded and the header shows a up/down sorting arrow, but this doesn't ... |
diff --git a/tests/iacli/test_ia_search.py b/tests/iacli/test_ia_search.py
index <HASH>..<HASH> 100644
--- a/tests/iacli/test_ia_search.py
+++ b/tests/iacli/test_ia_search.py
@@ -15,8 +15,8 @@ def test_ia_search():
stdout, stderr = proc.communicate()
assert proc.returncode == 0
- cmd = 'ia search iacli-t... | Fixed search query to return an expected number of results found. |
diff --git a/vext/install/__init__.py b/vext/install/__init__.py
index <HASH>..<HASH> 100644
--- a/vext/install/__init__.py
+++ b/vext/install/__init__.py
@@ -18,7 +18,7 @@ DEFAULT_PTH_CONTENT = """\
#
# Lines beginning with 'import' are executed, so import sys to get
# going.
-import os; import sys; exec("try:\n f... | Another attempt at updating the pth |
diff --git a/src/views/pages-manage/edit.php b/src/views/pages-manage/edit.php
index <HASH>..<HASH> 100644
--- a/src/views/pages-manage/edit.php
+++ b/src/views/pages-manage/edit.php
@@ -75,7 +75,9 @@ $form = \yii\bootstrap\ActiveForm::begin([
'ajax' => [
'u... | some features
* added an alert with error message
* added a delay before ajax request |
diff --git a/src/search/QuickOpen.js b/src/search/QuickOpen.js
index <HASH>..<HASH> 100644
--- a/src/search/QuickOpen.js
+++ b/src/search/QuickOpen.js
@@ -950,7 +950,7 @@ define(function (require, exports, module) {
exports.addQuickOpenPlugin = addQuickOpenPlugin;
exports.highlightMatch = highli... | Add clarifying comment for re-exported StringMatch functions in Quick Open. |
diff --git a/styleguide.config.js b/styleguide.config.js
index <HASH>..<HASH> 100644
--- a/styleguide.config.js
+++ b/styleguide.config.js
@@ -1,5 +1,4 @@
-``const path = require('path');
-
+const path = require('path');
const isProd = process.env.NODE_ENV === 'production';
const webpackConfig = isProd ?
require('... | Removed rogue quotes breaking build |
diff --git a/bin/dbs3DASAccess.py b/bin/dbs3DASAccess.py
index <HASH>..<HASH> 100755
--- a/bin/dbs3DASAccess.py
+++ b/bin/dbs3DASAccess.py
@@ -29,7 +29,7 @@ api_call_name = das_query.keys()[0]
api_call = getattr(api, api_call_name)
query = das_query[api_call_name]
-timing = {'stats':{'query' : str(query), 'api' : a... | Bug fix insert query dicts to sqlite |
diff --git a/misc/plugin/makerss.rb b/misc/plugin/makerss.rb
index <HASH>..<HASH> 100644
--- a/misc/plugin/makerss.rb
+++ b/misc/plugin/makerss.rb
@@ -104,7 +104,7 @@ class MakeRssFull
def file
f = @conf['makerss.file'] || 'index.rdf'
f = 'index.rdf' if f.empty?
- f
+ "#{TDiary.document_root}/#{f}"
end
... | puts rss file to the public directory if the Rack environment |
diff --git a/src/configure-webpack/loaders/javascript.js b/src/configure-webpack/loaders/javascript.js
index <HASH>..<HASH> 100644
--- a/src/configure-webpack/loaders/javascript.js
+++ b/src/configure-webpack/loaders/javascript.js
@@ -27,7 +27,7 @@ export default {
// Disables ES6 module transforma... | Transplile modules to commonjs while running the tests to fix inject-loader support |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -43,10 +43,11 @@ module.exports = function createReaddirStream (dir, opts) {
}
stream.files.forEach(function (fp, idx) {
- stream.push(new utils.File({
+ var config = utils.extend(opts, {
cwd: op... | fix(index.js): allow passing options/config to each Vinyl file which is created |
diff --git a/kaybee/plugins/articles/author.py b/kaybee/plugins/articles/author.py
index <HASH>..<HASH> 100644
--- a/kaybee/plugins/articles/author.py
+++ b/kaybee/plugins/articles/author.py
@@ -4,4 +4,6 @@ from kaybee.plugins.articles.base_article_reference import BaseArticleReference
@kb.resource('author')
class ... | chg: usr: Make it easier to get an author's headshot. |
diff --git a/middleman-core/lib/middleman-core/extension.rb b/middleman-core/lib/middleman-core/extension.rb
index <HASH>..<HASH> 100644
--- a/middleman-core/lib/middleman-core/extension.rb
+++ b/middleman-core/lib/middleman-core/extension.rb
@@ -81,7 +81,7 @@ module Middleman
end
end
- protected
+ ... | Extension setup methods should be private, not protected |
diff --git a/bigchaindb/commands/utils.py b/bigchaindb/commands/utils.py
index <HASH>..<HASH> 100644
--- a/bigchaindb/commands/utils.py
+++ b/bigchaindb/commands/utils.py
@@ -151,6 +151,10 @@ base_parser.add_argument('-c', '--config',
help='Specify the location of the configuration file '
... | Add log-level option for all CLI commands |
diff --git a/go/engine/common_test.go b/go/engine/common_test.go
index <HASH>..<HASH> 100644
--- a/go/engine/common_test.go
+++ b/go/engine/common_test.go
@@ -30,7 +30,7 @@ func NewFakeUser(prefix string) (fu *FakeUser, err error) {
return
}
username := fmt.Sprintf("%s_%s", prefix, hex.EncodeToString(buf))
- ema... | don't send email to @email.com |
diff --git a/mpd/tests.py b/mpd/tests.py
index <HASH>..<HASH> 100755
--- a/mpd/tests.py
+++ b/mpd/tests.py
@@ -685,14 +685,13 @@ class TestMPDClient(unittest.TestCase):
# MPD client tests which do not mock the socket, but rather replace it
# with a real socket from a socket
+@unittest.skipIf(not hasattr(socket, "so... | Use decorator for conditionally skipping socketpair tests |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -15,9 +15,9 @@ from setuptools import setup
packages = ['textblob_de']
if sys.version_info[0] == 2:
- requires = ["textblob>=0.8.0"]
-else:
requires = ["textblob>=0.8.0", "pattern>=2.6.0"]
+else:
+ requires = ["... | corrected Py2/3 requirements in setup.py |
diff --git a/spec/node-spec.js b/spec/node-spec.js
index <HASH>..<HASH> 100644
--- a/spec/node-spec.js
+++ b/spec/node-spec.js
@@ -336,7 +336,7 @@ describe('node feature', () => {
})
it('includes the electron version in process.versions', () => {
- assert(/^\d+\.\d+\.\d+$/.test(process.versions.electron))
+ ... | :construction_worker: Fix the spec |
diff --git a/test/example-test.js b/test/example-test.js
index <HASH>..<HASH> 100644
--- a/test/example-test.js
+++ b/test/example-test.js
@@ -366,7 +366,7 @@ helpers.makeTests("can-component examples", function(doc) {
});
var viewModel = new SimulatedScope();
- var renderer = stache("<grid deferreddata:bind='... | Fix deferred grid test
<I> doesn’t automatically call functions in `bind` |
diff --git a/ldapcherry/__init__.py b/ldapcherry/__init__.py
index <HASH>..<HASH> 100644
--- a/ldapcherry/__init__.py
+++ b/ldapcherry/__init__.py
@@ -677,7 +677,7 @@ class LdapCherry(object):
key = self.attributes.get_key()
username = params['attrs'][key]
sess = cherrypy.session
- adm... | fixing log errors in auth "none" mode
replacing None by unknown as a default value in order to avoid
error in generating log msg because None is not a string |
diff --git a/lib/Rx/Observable/BaseObservable.php b/lib/Rx/Observable/BaseObservable.php
index <HASH>..<HASH> 100644
--- a/lib/Rx/Observable/BaseObservable.php
+++ b/lib/Rx/Observable/BaseObservable.php
@@ -524,9 +524,9 @@ abstract class BaseObservable implements ObservableInterface
/**
* @return \Rx\Observa... | changed never to static on BaseObservable |
diff --git a/tests/unit/components/compiler-test.js b/tests/unit/components/compiler-test.js
index <HASH>..<HASH> 100644
--- a/tests/unit/components/compiler-test.js
+++ b/tests/unit/components/compiler-test.js
@@ -20,3 +20,11 @@ test('precompile disabled flags', function(assert) {
assert.equal(this.$().text().tri... | Add test for {{else}} block |
diff --git a/src/Brendt/Stitcher/Parser/YamlParser.php b/src/Brendt/Stitcher/Parser/YamlParser.php
index <HASH>..<HASH> 100644
--- a/src/Brendt/Stitcher/Parser/YamlParser.php
+++ b/src/Brendt/Stitcher/Parser/YamlParser.php
@@ -26,7 +26,7 @@ class YamlParser extends AbstractArrayParser
}
public function pars... | Add .yaml check as fallback extension in YamlParser |
diff --git a/versionner/version.py b/versionner/version.py
index <HASH>..<HASH> 100644
--- a/versionner/version.py
+++ b/versionner/version.py
@@ -63,7 +63,7 @@ class Version:
"""
if field not in self.VALID_UP_FIELDS:
- raise ValueError("Incorrect value of \"type\"")
+ raise Va... | changed (unified) error mesage on incorrect field |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -44,18 +44,25 @@ function CacheModule(cacheItem) {
return cacheItem.map;
};
source.node = function() {
- n = SourceNode.fromStringWithSourceMap(
+ var node = SourceNode.fromStringWithSourceMap(
cacheIte... | Improve source content key hydration
webpack 1 and 2 depend on different source-map versions which have
different source content name behaviour. To resolve this when
rehydrating the SourceNode for the Source.node method we reach into
RawModule's returned RawSource instance which will come from
webpack-core for webpack... |
diff --git a/tests/Go/Aop/Framework/ClosureStaticMethodInvocationTest.php b/tests/Go/Aop/Framework/ClosureStaticMethodInvocationTest.php
index <HASH>..<HASH> 100644
--- a/tests/Go/Aop/Framework/ClosureStaticMethodInvocationTest.php
+++ b/tests/Go/Aop/Framework/ClosureStaticMethodInvocationTest.php
@@ -132,7 +132,7 @@ c... | #<I> important test to check scope access and LSB |
diff --git a/edeposit/amqp/daemonwrapper.py b/edeposit/amqp/daemonwrapper.py
index <HASH>..<HASH> 100644
--- a/edeposit/amqp/daemonwrapper.py
+++ b/edeposit/amqp/daemonwrapper.py
@@ -47,7 +47,7 @@ class DaemonRunnerWrapper(object):
sys.exit(0)
def onIsRunning(self):
- if "stop" not in sys.argv or... | Fixed bug which blocked stopping the daemon. |
diff --git a/Slim/Http/Request.php b/Slim/Http/Request.php
index <HASH>..<HASH> 100644
--- a/Slim/Http/Request.php
+++ b/Slim/Http/Request.php
@@ -189,6 +189,10 @@ class Request extends Message implements ServerRequestInterface
return simplexml_load_string($input);
});
+ $this->registerMe... | Register text/xml in Request |
diff --git a/utils/seed-classes.js b/utils/seed-classes.js
index <HASH>..<HASH> 100644
--- a/utils/seed-classes.js
+++ b/utils/seed-classes.js
@@ -1,4 +1,4 @@
-import appendStatus from './append-status';
+import appendStatus from './append-status'
export default function(base, statuses = {}, classes = {}) {
if (c... | replace @ with value of prop
This allows us to pass a prop value as a status and have it return only
one class |
diff --git a/dvc/progress.py b/dvc/progress.py
index <HASH>..<HASH> 100644
--- a/dvc/progress.py
+++ b/dvc/progress.py
@@ -20,7 +20,7 @@ class TqdmThreadPoolExecutor(ThreadPoolExecutor):
Creates a blank initial dummy progress bar if needed so that workers
are forced to create "nested" bars.
"... | Remove multi-threaded prefix before progress bar(#<I>) |
diff --git a/riscvmodel/model.py b/riscvmodel/model.py
index <HASH>..<HASH> 100644
--- a/riscvmodel/model.py
+++ b/riscvmodel/model.py
@@ -1,4 +1,5 @@
from random import randrange
+import sys
from .variant import *
from .types import Register, RegisterFile, TracePC, TraceIntegerRegister, TraceMemory
@@ -111,7 +112... | Allow to write verbose trace to file |
diff --git a/salt/modules/ebuild.py b/salt/modules/ebuild.py
index <HASH>..<HASH> 100644
--- a/salt/modules/ebuild.py
+++ b/salt/modules/ebuild.py
@@ -317,7 +317,7 @@ def depclean(pkg=None):
CLI Example::
- salt '*' ebuild.depclean <package name>
+ salt '*' pkg.depclean <package name>
'''
... | Corrected doc for depclean |
diff --git a/geomdl/utilities.py b/geomdl/utilities.py
index <HASH>..<HASH> 100644
--- a/geomdl/utilities.py
+++ b/geomdl/utilities.py
@@ -536,8 +536,8 @@ def make_triangle_mesh(points, size_u, size_v, **kwargs):
v_range = 1.0 / float(size_v - 1) # for computing vertex parametric v value
# Vertex array siz... | Fix Python 2 compatibility issue for int division |
diff --git a/spec/active_record/events_spec.rb b/spec/active_record/events_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/active_record/events_spec.rb
+++ b/spec/active_record/events_spec.rb
@@ -42,17 +42,9 @@ RSpec.describe ActiveRecord::Events do
expect(Task.not_completed).to include(task)
end
- it '... | Override the complete! task method |
diff --git a/photutils/datasets/make.py b/photutils/datasets/make.py
index <HASH>..<HASH> 100644
--- a/photutils/datasets/make.py
+++ b/photutils/datasets/make.py
@@ -59,7 +59,7 @@ def make_gaussian_image(shape, table):
for source in table:
aperture = CircularAperture((source['x_0'], source['y_0']... | Removed plot fill keyword in make_gaussian_image example |
diff --git a/Lib/glyphsLib/parser.py b/Lib/glyphsLib/parser.py
index <HASH>..<HASH> 100644
--- a/Lib/glyphsLib/parser.py
+++ b/Lib/glyphsLib/parser.py
@@ -116,8 +116,9 @@ class Parser:
i += len(parsed)
return res, i
- # glyphs only supports octal escapes between \000 and \077
- _unescape_re = ... | [parser] Only parse hex values up to 0xFFFF
For consistency with Glyphs. |
diff --git a/builder/builder_test.go b/builder/builder_test.go
index <HASH>..<HASH> 100644
--- a/builder/builder_test.go
+++ b/builder/builder_test.go
@@ -9,6 +9,7 @@ import (
"path"
"path/filepath"
"strings"
+ "time"
. "github.com/cloudfoundry-incubator/buildpack_app_lifecycle/Godeps/_workspace/src/github.co... | wait a bit longer for builder to execute & finish |
diff --git a/go/libkb/api.go b/go/libkb/api.go
index <HASH>..<HASH> 100644
--- a/go/libkb/api.go
+++ b/go/libkb/api.go
@@ -568,7 +568,7 @@ func (a *InternalAPIEngine) fixHeaders(arg APIArg, req *http.Request) error {
if a.G().Env.GetTorMode().UseHeaders() {
req.Header.Set("User-Agent", UserAgent)
- identifyAs :... | fix iOS stats (#<I>) |
diff --git a/spring-dbunit-test/src/main/java/com/excilys/ebi/spring/dbunit/test/TestConfigurationProcessor.java b/spring-dbunit-test/src/main/java/com/excilys/ebi/spring/dbunit/test/TestConfigurationProcessor.java
index <HASH>..<HASH> 100644
--- a/spring-dbunit-test/src/main/java/com/excilys/ebi/spring/dbunit/test/Tes... | support escapePattern of @DataSet annotation |
diff --git a/modin/engines/ray/pandas_on_ray/io.py b/modin/engines/ray/pandas_on_ray/io.py
index <HASH>..<HASH> 100644
--- a/modin/engines/ray/pandas_on_ray/io.py
+++ b/modin/engines/ray/pandas_on_ray/io.py
@@ -51,7 +51,8 @@ def _read_parquet_columns(path, columns, num_splits, kwargs): # pragma: no cove
"""
... | Replace read_pandas with ParquetDataset to support predicate pushdown (#<I>)
* Replace read_pandas with ParquetDataset to support predicate pushdown on parquet
* reformatted as per black |
diff --git a/jptsmeta.py b/jptsmeta.py
index <HASH>..<HASH> 100644
--- a/jptsmeta.py
+++ b/jptsmeta.py
@@ -428,9 +428,14 @@ class JPTSMeta(object):
def getSupplementaryMaterial(self):
"""
-
- """
- return None
+ <supplementary-material> is an optional element, 0 or more, in
... | fleshed out docstrings and method for getProduct() and getSupplementaryMaterial() |
diff --git a/src/Tokenizer/Tokens.php b/src/Tokenizer/Tokens.php
index <HASH>..<HASH> 100644
--- a/src/Tokenizer/Tokens.php
+++ b/src/Tokenizer/Tokens.php
@@ -313,13 +313,14 @@ class Tokens extends \SplFixedArray
if (!$this[$index] || !$this[$index]->equals($newval)) {
$this->changed = true;
- ... | DX: Tokens - do not unregister/register found tokens when it is the same token |
diff --git a/shutit_main.py b/shutit_main.py
index <HASH>..<HASH> 100755
--- a/shutit_main.py
+++ b/shutit_main.py
@@ -735,7 +735,7 @@ def shutit_main():
])
digraph = digraph + '\n}'
if cfg['action']['show_depgraph']:
- shutit.log(digraph, force_stdout=True)
+ shutit.log('\n' + digraph, force_stdout=True)
sh... | digraph always computed ready to write out to a file |
diff --git a/lib/agent/index.js b/lib/agent/index.js
index <HASH>..<HASH> 100644
--- a/lib/agent/index.js
+++ b/lib/agent/index.js
@@ -247,9 +247,7 @@ var Agent = self = {
logger.off();
- if (matches = string.match(/get (\w+) report/))
- this.get_report(matches[1]);
- else if (matches = string.matc... | Removed 'get [what] report' command from agent, not really needed. |
diff --git a/init.rb b/init.rb
index <HASH>..<HASH> 100644
--- a/init.rb
+++ b/init.rb
@@ -1,2 +1 @@
require 'attachment_saver'
-ActiveRecord::Base.send(:extend, AttachmentSaver::BaseMethods)
diff --git a/lib/attachment_saver.rb b/lib/attachment_saver.rb
index <HASH>..<HASH> 100644
--- a/lib/attachment_saver.rb
+++ b/... | move ActiveRecord extend call to attachment_saver.rb in preparation for gemifying |
diff --git a/parsyfiles/plugins_base/support_for_objects.py b/parsyfiles/plugins_base/support_for_objects.py
index <HASH>..<HASH> 100644
--- a/parsyfiles/plugins_base/support_for_objects.py
+++ b/parsyfiles/plugins_base/support_for_objects.py
@@ -83,9 +83,9 @@ class MissingMandatoryAttributeFiles(FileNotFoundError):
... | Improved error message for MissingMandatoryAttributeFiles in dict_to_object |
diff --git a/py3status/modules/mpris.py b/py3status/modules/mpris.py
index <HASH>..<HASH> 100644
--- a/py3status/modules/mpris.py
+++ b/py3status/modules/mpris.py
@@ -310,7 +310,7 @@ class Py3status:
self._kill = True
def _name_owner_changed(self, *args):
- player_add = args[5][2]
+ pl... | Detect players starting after py3status |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.