diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/libact/query_strategies/__init__.py b/libact/query_strategies/__init__.py
index <HASH>..<HASH> 100644
--- a/libact/query_strategies/__init__.py
+++ b/libact/query_strategies/__init__.py
@@ -5,10 +5,7 @@ import logging
logger = logging.getLogger(__name__)
from .active_learning_by_learning import ActiveL... | remove try except when hintsvm is not installed |
diff --git a/src/angular-block-ui/service.test.js b/src/angular-block-ui/service.test.js
index <HASH>..<HASH> 100644
--- a/src/angular-block-ui/service.test.js
+++ b/src/angular-block-ui/service.test.js
@@ -606,6 +606,5 @@ describe('block-ui-service', function() {
expect($document[0].activeElement).toBe($otherIn... | Fix window switching in IE #<I> |
diff --git a/lib/util/slice_test.go b/lib/util/slice_test.go
index <HASH>..<HASH> 100644
--- a/lib/util/slice_test.go
+++ b/lib/util/slice_test.go
@@ -20,8 +20,8 @@ func TestExist(t *testing.T) {
[]bool{true, false, false},
}
for i, exp := range test.exps {
- if exist(test.array, test.elms[i]) != exp {
- t.Er... | forgot to change method names in slice tests |
diff --git a/src/Symfony/Component/HttpKernel/Profiler/FileProfilerStorage.php b/src/Symfony/Component/HttpKernel/Profiler/FileProfilerStorage.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/HttpKernel/Profiler/FileProfilerStorage.php
+++ b/src/Symfony/Component/HttpKernel/Profiler/FileProfilerStorage.php
@... | [HttpKernel] Fix tests for the file storage of profiler |
diff --git a/hug/interface.py b/hug/interface.py
index <HASH>..<HASH> 100644
--- a/hug/interface.py
+++ b/hug/interface.py
@@ -331,7 +331,7 @@ class CLI(Interface):
self.interface.cli = self
used_options = {'h', 'help'}
- nargs_set = self.interface.takes_kargs
+ nargs_set = self.interf... | Set narg to true for kwargs |
diff --git a/PBB_Core.py b/PBB_Core.py
index <HASH>..<HASH> 100755
--- a/PBB_Core.py
+++ b/PBB_Core.py
@@ -729,8 +729,10 @@ class WDItemEngine(object):
json_data = json.loads(reply.text)
pprint.pprint(json_data)
+ if 'error' in json_data.keys:
+ raise UserWarning("W... | catch API error and raise an exxception |
diff --git a/test/test_sc2replay.py b/test/test_sc2replay.py
index <HASH>..<HASH> 100644
--- a/test/test_sc2replay.py
+++ b/test/test_sc2replay.py
@@ -17,3 +17,7 @@ class TestSC2Replay(unittest.TestCase):
self.assertEqual(self.replay.duration, '26m 17s')
self.assertEqual(self.replay.version, '1.0.2.16... | Add a small test for init with a file arg. |
diff --git a/lib/rack/rewrite/rule.rb b/lib/rack/rewrite/rule.rb
index <HASH>..<HASH> 100644
--- a/lib/rack/rewrite/rule.rb
+++ b/lib/rack/rewrite/rule.rb
@@ -165,6 +165,8 @@ module Rack
string =~ matcher
elsif matcher.is_a?(String)
string == matcher
+ elsif matcher.is_a?(S... | Allow matchers to be (case insensitive) Symbols. |
diff --git a/sacad.py b/sacad.py
index <HASH>..<HASH> 100755
--- a/sacad.py
+++ b/sacad.py
@@ -860,6 +860,8 @@ class CoverParadiseCoverSource(CoverSource):
size = tuple(map(int, re_match.group(1, 2)))
# get thumbnail url
link = td1.find("a")
+ if link is None:
+ link = td2.fin... | Fix Cover Paradise source failing for some searches |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -21,9 +21,7 @@ with open(os.path.join(here, version_filename)) as version_file:
# change setup.py for readthedocs
on_rtd = os.environ.get('READTHEDOCS') == 'True'
-install_requires=['pandas', 'numpy', 'sgp4', 'pyEphem', '... | Update setup.py
Moved xarray import to the front. Read the Docs isn't getting the correct pandas version and can't handle self upgrading for some reason. |
diff --git a/Lib/glyphsLib/classes.py b/Lib/glyphsLib/classes.py
index <HASH>..<HASH> 100755
--- a/Lib/glyphsLib/classes.py
+++ b/Lib/glyphsLib/classes.py
@@ -1925,6 +1925,8 @@ class GSNode(GSBase):
else:
if self.type == CURVE:
content = "c"
+ elif self.type == QCURVE:
... | Fix saving quadratic curves in Glyphs 3 |
diff --git a/lib/csscomb.js b/lib/csscomb.js
index <HASH>..<HASH> 100644
--- a/lib/csscomb.js
+++ b/lib/csscomb.js
@@ -71,6 +71,10 @@ Comb.prototype = {
* @returns {Array}
*/
processTree: function(tree) {
+
+ // We walk across complete tree for each handler,
+ // because we need strictly ... | Add comment with explanation for independed pass |
diff --git a/jquery.flot.pie.js b/jquery.flot.pie.js
index <HASH>..<HASH> 100644
--- a/jquery.flot.pie.js
+++ b/jquery.flot.pie.js
@@ -232,19 +232,21 @@ More detail and specific examples can be found in the included HTML file.
for (var i = 0; i < data.length; ++i) {
- if (data[i].data[0][1] / total <= option... | Cache the data value, since it is used repeatedly. |
diff --git a/apps/advanced/frontend/config/main.php b/apps/advanced/frontend/config/main.php
index <HASH>..<HASH> 100644
--- a/apps/advanced/frontend/config/main.php
+++ b/apps/advanced/frontend/config/main.php
@@ -11,12 +11,12 @@ $params = array_merge(
return [
'id' => 'app-frontend',
'basePath' => dirname(__DIR_... | Small edit for consistency with frontend config.
Small edit for consistency with /apps/advanced/backend/config/main.php. Sorry, my OCD kicked in. |
diff --git a/isotopic_logging/context.py b/isotopic_logging/context.py
index <HASH>..<HASH> 100644
--- a/isotopic_logging/context.py
+++ b/isotopic_logging/context.py
@@ -45,6 +45,8 @@ _stack = InjectionStack(_local)
class InjectionContext(object):
+ _old_enter_time = None
+
def __init__(self, injector, in... | ensure `elapsed_time` is related only to current context manager (#3) |
diff --git a/src/labels/label_point.js b/src/labels/label_point.js
index <HASH>..<HASH> 100644
--- a/src/labels/label_point.js
+++ b/src/labels/label_point.js
@@ -34,6 +34,10 @@ export default class LabelPoint extends Label {
this.aabb = this.obb.getExtent();
}
+ getNextFittingSegment() {
+ re... | Temporary API symmetry between label_point and label_line for finding next |
diff --git a/ocLazyLoad.js b/ocLazyLoad.js
index <HASH>..<HASH> 100644
--- a/ocLazyLoad.js
+++ b/ocLazyLoad.js
@@ -29,7 +29,7 @@
//injector hasn't been assigned to the rootElement yet:
providers.getInstanceInjector = function() {
return (instanceInjector) ? instanceInjector : (in... | Code style: variable name/semicolon
Renamed load_complete to loadComplete
Added missing semicolon |
diff --git a/salt/states/ceph.py b/salt/states/ceph.py
index <HASH>..<HASH> 100644
--- a/salt/states/ceph.py
+++ b/salt/states/ceph.py
@@ -66,8 +66,8 @@ def quorum(name, **kwargs):
return _test(name, "cluster quorum")
try:
cluster_quorum = __salt__['ceph.cluster_quorum'](**paramters)
- except ... | salt.states.ceph: Rename exception.
pylint3 does not like single character variables. |
diff --git a/integrations/helm/chartsync/deps.go b/integrations/helm/chartsync/deps.go
index <HASH>..<HASH> 100644
--- a/integrations/helm/chartsync/deps.go
+++ b/integrations/helm/chartsync/deps.go
@@ -11,6 +11,15 @@ import (
func updateDependencies(chartDir, helmhome string) error {
var hasLockFile bool
+ // san... | Check that chart exists when updating its deps
We don't want to fail at updating chart dependencies when a chart
doesn't have a requirements.yaml file (which is optional, for a
chart). However, we _do_ want to fail if the chart doesn't exist in
the filesystem at all. |
diff --git a/src/Bundle/Parser/IniParser.php b/src/Bundle/Parser/IniParser.php
index <HASH>..<HASH> 100644
--- a/src/Bundle/Parser/IniParser.php
+++ b/src/Bundle/Parser/IniParser.php
@@ -103,7 +103,7 @@ class IniParser implements ParserInterface
{
$ini = parse_ini_file($file, true);
- if (false =... | Handle the case that the parse_ini_file() function is disabled (see #8). |
diff --git a/demo/basic/index.js b/demo/basic/index.js
index <HASH>..<HASH> 100644
--- a/demo/basic/index.js
+++ b/demo/basic/index.js
@@ -2,5 +2,5 @@ var dataContext = {
points: require('./randomPoints')(10)
};
-var vivasvg = require('../');
+var vivasvg = require('../../');
vivasvg.bootstrap(document.getElemen... | Updated path to vivasvg |
diff --git a/khard/khard.py b/khard/khard.py
index <HASH>..<HASH> 100644
--- a/khard/khard.py
+++ b/khard/khard.py
@@ -1029,9 +1029,8 @@ def list_subcommand(vcard_list, parsable):
name = vcard.get_first_name_last_name()
else:
name = vcard.get_last_name_first_name()
- ... | Display full UID in parsable output
This is a preparation for the following move of all short uid handling
code to the AddressBook class. It also makes more sense to have the
full uid in the parsable output as it is not intended to be consumed by
humans. |
diff --git a/Tools/build-website.js b/Tools/build-website.js
index <HASH>..<HASH> 100644
--- a/Tools/build-website.js
+++ b/Tools/build-website.js
@@ -308,7 +308,7 @@ https://github.com/laurent22/joplin/blob/master/{{{sourceMarkdownFile}}}
const footerHtml = `
<div class="footer">
-Copyright (c) 2016-2019 Laurent C... | fix copyright year in web site generation |
diff --git a/aws.js b/aws.js
index <HASH>..<HASH> 100644
--- a/aws.js
+++ b/aws.js
@@ -234,7 +234,7 @@ aws.queryRoute53 = function(method, path, data, options, callback)
if (!options) options = {};
var curTime = new Date().toUTCString();
- var uri = "https://route53.amazonaws.com/2013-04-01/" + path;
+ ... | Updated docs, minor bugfixes |
diff --git a/whois.ip.php b/whois.ip.php
index <HASH>..<HASH> 100644
--- a/whois.ip.php
+++ b/whois.ip.php
@@ -65,15 +65,11 @@ function parse ($data,$query)
{
$this->Query=array();
+$this->Query['server'] = 'whois.arin.net';
+$this->Query['string'] = $query;
-unset($this->Query['handler']);
-
-if (!isset($result... | fixed problem with lastest changes in whois.ip |
diff --git a/vdom/core.py b/vdom/core.py
index <HASH>..<HASH> 100644
--- a/vdom/core.py
+++ b/vdom/core.py
@@ -79,7 +79,7 @@ class VDOM(object):
self.key = key
# Validate that all children are VDOMs or strings
- if not all([isinstance(c, VDOM) or isinstance(c, str) for c in children]):
+ ... | Don't fail validation when no children are passed in |
diff --git a/torchvision/models/mnasnet.py b/torchvision/models/mnasnet.py
index <HASH>..<HASH> 100644
--- a/torchvision/models/mnasnet.py
+++ b/torchvision/models/mnasnet.py
@@ -1,4 +1,3 @@
-import math
import warnings
import torch | cleanup unused import (#<I>)
cleanup |
diff --git a/lib/vcards/vcard.rb b/lib/vcards/vcard.rb
index <HASH>..<HASH> 100644
--- a/lib/vcards/vcard.rb
+++ b/lib/vcards/vcard.rb
@@ -66,18 +66,42 @@ module Vcards
number.save
end
+ def phone_number
+ phone_numbers.first
+ end
+
+ def phone_number=(number)
+ phone_numbers.bui... | Add convenience accessors for *_numbers. |
diff --git a/install.rb b/install.rb
index <HASH>..<HASH> 100755
--- a/install.rb
+++ b/install.rb
@@ -73,7 +73,7 @@ bins = glob(%w{bin/*})
rdoc = glob(%w{bin/* sbin/* lib/**/*.rb README README-library CHANGELOG TODO Install}).reject { |e| e=~ /\.(bat|cmd)$/ }
ri = glob(%w{bin/*.rb sbin/* lib/**/*.rb}).reject { ... | maint: install erb templates under lib/
We now use a handful of erb templates to generate help, so it matters that we
install them into the right destination. This extends install.rb to reflect
that change. |
diff --git a/test/test_helper.rb b/test/test_helper.rb
index <HASH>..<HASH> 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -6,7 +6,9 @@ require "rails/test_help"
require 'shoulda'
require 'pry'
require 'factory_girl'
-FactoryGirl.find_definitions
+if FactoryGirl.factories.first.nil?
+ FactoryGirl.fin... | get factories loading properly for all types of test runs |
diff --git a/src/Bllim/Datatables/Datatables.php b/src/Bllim/Datatables/Datatables.php
index <HASH>..<HASH> 100644
--- a/src/Bllim/Datatables/Datatables.php
+++ b/src/Bllim/Datatables/Datatables.php
@@ -402,13 +402,10 @@ class Datatables
$columns = $schema->listTableColumns($table);
foreach ($columns as... | Tidying up codes and removing useless comments |
diff --git a/Bundle/BlogBundle/Filter/CategoryFilter.php b/Bundle/BlogBundle/Filter/CategoryFilter.php
index <HASH>..<HASH> 100644
--- a/Bundle/BlogBundle/Filter/CategoryFilter.php
+++ b/Bundle/BlogBundle/Filter/CategoryFilter.php
@@ -112,7 +112,7 @@ class CategoryFilter extends BaseFilter
$categories = $this-... | revert and fix BlogCategory call |
diff --git a/scapy.py b/scapy.py
index <HASH>..<HASH> 100755
--- a/scapy.py
+++ b/scapy.py
@@ -10356,6 +10356,22 @@ def dhcp_request(iface=None,**kargs):
return srp1(Ether(dst="ff:ff:ff:ff:ff:ff")/IP(src="0.0.0.0",dst="255.255.255.255")/UDP(sport=68,dport=67)
/BOOTP(chaddr=hw)/DHCP(options=[("mes... | Added snmpwalk() |
diff --git a/public/assets/login.js b/public/assets/login.js
index <HASH>..<HASH> 100644
--- a/public/assets/login.js
+++ b/public/assets/login.js
@@ -9,7 +9,6 @@ function login() {
var recaptcha = $("#g-recaptcha-response").val();
toast("Validando dados!", 15000);
post('login', 'login', {ema... | clearToast remove because toast is clear itself |
diff --git a/questionary/prompts/common.py b/questionary/prompts/common.py
index <HASH>..<HASH> 100644
--- a/questionary/prompts/common.py
+++ b/questionary/prompts/common.py
@@ -18,13 +18,22 @@ from questionary.constants import (
INDICATOR_UNSELECTED,
)
+# This is a cut-down version of `prompt_toolkit.formatte... | Accept style tuples in `title` argument annotation of `Choice` (#<I>) |
diff --git a/src/Psalm/ErrorBaseline.php b/src/Psalm/ErrorBaseline.php
index <HASH>..<HASH> 100644
--- a/src/Psalm/ErrorBaseline.php
+++ b/src/Psalm/ErrorBaseline.php
@@ -285,7 +285,7 @@ class ErrorBaseline
$baselineDoc->formatOutput = true;
$xml = preg_replace_callback(
- '/<files (psalm... | apply pretty formatting when there are no issues (#<I>) |
diff --git a/src/python/pants/base/worker_pool.py b/src/python/pants/base/worker_pool.py
index <HASH>..<HASH> 100644
--- a/src/python/pants/base/worker_pool.py
+++ b/src/python/pants/base/worker_pool.py
@@ -8,6 +8,7 @@ from __future__ import (nested_scopes, generators, division, absolute_import, wi
import threading
i... | Exit workers on sigint rather than ignore
Testing Done:
<URL> |
diff --git a/lib/transactions.js b/lib/transactions.js
index <HASH>..<HASH> 100644
--- a/lib/transactions.js
+++ b/lib/transactions.js
@@ -60,12 +60,11 @@ function Transactions(client) {
* @param {number} [timeLimit] - the maximum number of seconds that
* the transaction should run before rolling back automaticall... | fix(#<I>): make a transaction object the default return value
For a transactions.read()
Also update docs for returning a string transactionID. Returning a string transactionID is deprecated and will be removed in the next major release. |
diff --git a/openquake/calculators/disaggregation.py b/openquake/calculators/disaggregation.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/disaggregation.py
+++ b/openquake/calculators/disaggregation.py
@@ -494,7 +494,7 @@ class DisaggregationCalculator(base.HazardCalculator):
out = output_dict(sel... | Sorted the disagg results before saving them [skip CI] |
diff --git a/theme/boost/classes/boostnavbar.php b/theme/boost/classes/boostnavbar.php
index <HASH>..<HASH> 100644
--- a/theme/boost/classes/boostnavbar.php
+++ b/theme/boost/classes/boostnavbar.php
@@ -55,6 +55,9 @@ class boostnavbar implements \renderable {
protected function prepare_nodes_for_boost(): void {
... | MDL-<I> theme_boost: Remove breadcrumb nodes that exist in primary nav
Generally, we want to avoid displaying any breadcrumb nodes which are
already present in the primary navigation menu. Currently, this is done
by manually specifying which breadcrumb node (by its identification key)
should be removed. This change pr... |
diff --git a/src/TestSuite/IntegrationTestTrait.php b/src/TestSuite/IntegrationTestTrait.php
index <HASH>..<HASH> 100644
--- a/src/TestSuite/IntegrationTestTrait.php
+++ b/src/TestSuite/IntegrationTestTrait.php
@@ -621,7 +621,8 @@ trait IntegrationTestTrait
$props = [
'url' => $url,
'... | Pass uploaded files configured with configRequest() to ServerRequest. |
diff --git a/src/Illuminate/Remote/Connection.php b/src/Illuminate/Remote/Connection.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Remote/Connection.php
+++ b/src/Illuminate/Remote/Connection.php
@@ -36,13 +36,6 @@ class Connection implements ConnectionInterface {
protected $username;
/**
- * The authenti... | Removing variable that's never used. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,9 @@ setup(
install_requires=[
'ase',
'pypif',
- 'requests'
],
- packages=find_packages(exclude=('tests', 'docs'))
+ extras_require={
+ 'report': ["requests"],
+ },
+ ... | Move requests to extras
Since `quality_report` is `False` by default. |
diff --git a/server/gulpfile.js b/server/gulpfile.js
index <HASH>..<HASH> 100644
--- a/server/gulpfile.js
+++ b/server/gulpfile.js
@@ -89,7 +89,7 @@ gulp.task('output-build-info', function () {
// Capture changes from the last commit
try {
- execSync('git diff --quiet HEAD');
+ execSync('git d... | fix(server): build-info dirty flag is capturing changes from all projects |
diff --git a/synctool/src/test/java/org/duracloud/sync/walker/DirWalkerTest.java b/synctool/src/test/java/org/duracloud/sync/walker/DirWalkerTest.java
index <HASH>..<HASH> 100644
--- a/synctool/src/test/java/org/duracloud/sync/walker/DirWalkerTest.java
+++ b/synctool/src/test/java/org/duracloud/sync/walker/DirWalkerTes... | Changing this test to use a directory which does not change size in the course of the test.
git-svn-id: <URL> |
diff --git a/Generator.php b/Generator.php
index <HASH>..<HASH> 100644
--- a/Generator.php
+++ b/Generator.php
@@ -172,6 +172,16 @@ abstract class Generator {
}
/**
+ * Setup some hook.
+ *
+ * @return void
+ */
+ public function setUp()
+ {
+ //
+ }
+
+ /**
* Run th... | Add setUp method: used for setup some condition of command |
diff --git a/sharding-proxy/src/test/java/io/shardingsphere/shardingproxy/transport/mysql/packet/command/query/text/query/ComQueryPacketTest.java b/sharding-proxy/src/test/java/io/shardingsphere/shardingproxy/transport/mysql/packet/command/query/text/query/ComQueryPacketTest.java
index <HASH>..<HASH> 100644
--- a/shard... | modify ComQueryPacketTest.java |
diff --git a/src/Provider/DatabaseMenuProvider.php b/src/Provider/DatabaseMenuProvider.php
index <HASH>..<HASH> 100644
--- a/src/Provider/DatabaseMenuProvider.php
+++ b/src/Provider/DatabaseMenuProvider.php
@@ -29,7 +29,7 @@ class DatabaseMenuProvider implements MenuProviderInterface
*/
protected $matcher;
... | Reverted the optional matcher argument to a required one
No need to have an optional/nullable matcher as this is included with knp menu bundle anyway |
diff --git a/lib/puppetdb_query/version.rb b/lib/puppetdb_query/version.rb
index <HASH>..<HASH> 100644
--- a/lib/puppetdb_query/version.rb
+++ b/lib/puppetdb_query/version.rb
@@ -1,3 +1,3 @@
module PuppetDBQuery
- VERSION = "0.0.33".freeze
+ VERSION = "0.0.34".freeze
end | m<I>'s version bumper |
diff --git a/src/components/dialog/QDialog.js b/src/components/dialog/QDialog.js
index <HASH>..<HASH> 100644
--- a/src/components/dialog/QDialog.js
+++ b/src/components/dialog/QDialog.js
@@ -94,9 +94,8 @@ export default {
this.$emit('input', val)
},
show: () => {
- this.$emit('show... | QDialog: emit show after focusing the element in dialog (#<I>)
Allows simpler focusing of another elements in `@show` in userland.
ref #<I> |
diff --git a/phy/cluster/manual/view_model.py b/phy/cluster/manual/view_model.py
index <HASH>..<HASH> 100644
--- a/phy/cluster/manual/view_model.py
+++ b/phy/cluster/manual/view_model.py
@@ -157,7 +157,7 @@ class FeatureViewModel(BaseViewModel):
# (n_spikes, n_channels, n_features)
# because that's wh... | Fixed bug in feature view model due to cluster order. |
diff --git a/billy/fulltext.py b/billy/fulltext.py
index <HASH>..<HASH> 100644
--- a/billy/fulltext.py
+++ b/billy/fulltext.py
@@ -42,7 +42,10 @@ PUNCTUATION = re.compile('[%s]' % re.escape(string.punctuation))
def _clean_text(text):
- text = text.encode('ascii', 'ignore')
+ if isinstance(text, unicode):
+ ... | try harder to clean up unicode |
diff --git a/allegedb/allegedb/cache.py b/allegedb/allegedb/cache.py
index <HASH>..<HASH> 100644
--- a/allegedb/allegedb/cache.py
+++ b/allegedb/allegedb/cache.py
@@ -611,17 +611,3 @@ class EdgesCache(Cache):
= self.db._make_edge(self.db.graph[graph], nodeA, nodeB, idx)
Cache.store(self, graph... | Delete some tests that didn't make sense
They seem entirely redundant with the ones already in Cache.store,
actually. I think I had more caching in mind to do and tried to
get all Test Driven Development about it, but then forgot all
about it? |
diff --git a/lib/active_attr/version.rb b/lib/active_attr/version.rb
index <HASH>..<HASH> 100644
--- a/lib/active_attr/version.rb
+++ b/lib/active_attr/version.rb
@@ -1,5 +1,5 @@
module ActiveAttr
# Complete version string
# @since 0.1.0
- VERSION = "0.6.0"
+ VERSION = "0.7.0.alpha1"
end | Bump development version to <I>.alpha1 |
diff --git a/tests/ServerTest.php b/tests/ServerTest.php
index <HASH>..<HASH> 100644
--- a/tests/ServerTest.php
+++ b/tests/ServerTest.php
@@ -103,6 +103,15 @@ class ServerTest extends \PHPUnit_Framework_TestCase {
$this->assertEquals($eventsTable, $subscribedEventsReflection->getValue($this->server));
}
... | Added test for unknown event unsubscription in Server. |
diff --git a/numexpr/expressions.py b/numexpr/expressions.py
index <HASH>..<HASH> 100644
--- a/numexpr/expressions.py
+++ b/numexpr/expressions.py
@@ -15,8 +15,8 @@ import sys
import threading
import numpy
-from distutils.version import LooseVersion
-_np_version = LooseVersion(numpy.__version__)
+from pkg_resources... | Better fix for gh-<I>
distutils.LooseVersion does not handle correctly RC versions |
diff --git a/lib/node-libnmap.js b/lib/node-libnmap.js
index <HASH>..<HASH> 100644
--- a/lib/node-libnmap.js
+++ b/lib/node-libnmap.js
@@ -15,7 +15,7 @@ var version = 'v0.2.0'
, ipv6 = require('ip-address').v6
, netmask = require('netmask').Netmask
, proc = require('child_process').exec
- , nmap = function(op... | Removed undefined fn() |
diff --git a/container/docker/engine.py b/container/docker/engine.py
index <HASH>..<HASH> 100644
--- a/container/docker/engine.py
+++ b/container/docker/engine.py
@@ -753,20 +753,22 @@ class Engine(BaseEngine):
client.tag(image_id, repository, tag=image_buildstamp)
logger.info('Pushing %s:%s...' % (... | Properly parse docker push output stream
Properly parses the docker push output when multiple json lines from the data stream are returned |
diff --git a/lib/rexport/export_methods.rb b/lib/rexport/export_methods.rb
index <HASH>..<HASH> 100644
--- a/lib/rexport/export_methods.rb
+++ b/lib/rexport/export_methods.rb
@@ -247,6 +247,8 @@ module Rexport #:nodoc:
end
end
+ export_items.reset
+
position = 0
... | fix sorting of renamed fields |
diff --git a/lib/tokenizer.js b/lib/tokenizer.js
index <HASH>..<HASH> 100644
--- a/lib/tokenizer.js
+++ b/lib/tokenizer.js
@@ -138,7 +138,7 @@
Tokenizer.prototype = {
ABORT: function ABORT(){},
- SKIP: function SKIP(val){this.value = val;},
+ SKIP: function SKIP(amount){this.amount = amount;},
/**
* Matc... | Fixed bug in tokenizer with skipping tokens |
diff --git a/ui/js/directives/top_nav_bar.js b/ui/js/directives/top_nav_bar.js
index <HASH>..<HASH> 100644
--- a/ui/js/directives/top_nav_bar.js
+++ b/ui/js/directives/top_nav_bar.js
@@ -40,12 +40,12 @@ treeherder.directive('thWatchedRepo', [
btnClass: "btn-view-nav-closed"
},
"unsupporte... | Bug <I> - Provide icons for repo btn states unsupported/not-retrieved |
diff --git a/scripts/serverless.js b/scripts/serverless.js
index <HASH>..<HASH> 100755
--- a/scripts/serverless.js
+++ b/scripts/serverless.js
@@ -448,7 +448,6 @@ processSpanPromise = (async () => {
}
}
}
-
if (isHelpRequest || commands[0] === 'plugin') {
p... | fix: Ensure to attempt minimal config resolution for plugin commands |
diff --git a/messages.go b/messages.go
index <HASH>..<HASH> 100644
--- a/messages.go
+++ b/messages.go
@@ -22,7 +22,7 @@ type Msg struct {
User string `json:"user,omitempty"`
Text string `json:"text,omitempty"`
Timestamp string `json:"ts,omitempty"`
- ThreadTimeStamp ... | Rename ThreadTimeStamp to Threadtimestamp for consistency |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,10 +1,27 @@
# -*- coding: utf-8 -*-
+import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
+def walk_subpkg(name):
+ data_files = []
+ package_dir ... | folium issue #<I> - fixed setup.py to package all the files in templates/tiles. |
diff --git a/fireplace/enums.py b/fireplace/enums.py
index <HASH>..<HASH> 100644
--- a/fireplace/enums.py
+++ b/fireplace/enums.py
@@ -56,14 +56,50 @@ class GameTag(IntEnum):
WINDFURY = 189
TAUNT = 190
STEALTH = 191
+ SPELLPOWER = 192
DIVINE_SHIELD = 194
CHARGE = 197
CARDRACE = 200
+ FACTION = 201
CARDTYP... | Add most currently-used GameTags |
diff --git a/mod/imscp/backup/moodle1/lib.php b/mod/imscp/backup/moodle1/lib.php
index <HASH>..<HASH> 100644
--- a/mod/imscp/backup/moodle1/lib.php
+++ b/mod/imscp/backup/moodle1/lib.php
@@ -122,13 +122,18 @@ class moodle1_mod_imscp_handler extends moodle1_mod_handler {
protected function parse_structure($data, $c... | MDL-<I> IMS content package converter checks that the manifest file exists |
diff --git a/src/isEmptyFunction.js b/src/isEmptyFunction.js
index <HASH>..<HASH> 100644
--- a/src/isEmptyFunction.js
+++ b/src/isEmptyFunction.js
@@ -2,7 +2,7 @@ module.exports = function(aFunc, istanbul) {
var vStr = aFunc.toString();
var result = /^function\s*\S*\s*\((.|[\n\r\u2028\u2029])*\)\s*{[\s;]*}$/g.tes... | * [bug] the Webpack / Browserify / etc do not "conditional" requires the require gets executed at build time.
closes #2 |
diff --git a/mongoctl/mongoctl.py b/mongoctl/mongoctl.py
index <HASH>..<HASH> 100644
--- a/mongoctl/mongoctl.py
+++ b/mongoctl/mongoctl.py
@@ -3805,8 +3805,7 @@ class Server(DocumentWrapper):
status['connection'] = True
can_admin = True
- if (admin and
- self.is_aut... | Making is_administrable( ) more accurate by reverting get_status( ) to always attempt to auth |
diff --git a/src/MarkerClusterGroup.js b/src/MarkerClusterGroup.js
index <HASH>..<HASH> 100644
--- a/src/MarkerClusterGroup.js
+++ b/src/MarkerClusterGroup.js
@@ -416,6 +416,7 @@ export var MarkerClusterGroup = L.MarkerClusterGroup = L.FeatureGroup.extend({
//If we aren't on the map (yet), blow away the markers we k... | Clear out _needsRemoving when clearLayers is called while we aren't on the map. Otherwise we'll try remove them when we are added, which breaks things.
Refs #<I> |
diff --git a/spec/api-browser-window-spec.js b/spec/api-browser-window-spec.js
index <HASH>..<HASH> 100644
--- a/spec/api-browser-window-spec.js
+++ b/spec/api-browser-window-spec.js
@@ -153,6 +153,14 @@ describe('browser-window module', function () {
})
w.loadURL('file://' + path.join(fixtures, 'api', 'd... | spec: loadUrl should not crash in did-fail-provisional-load handler |
diff --git a/lib/cuke_modeler/models/cell.rb b/lib/cuke_modeler/models/cell.rb
index <HASH>..<HASH> 100644
--- a/lib/cuke_modeler/models/cell.rb
+++ b/lib/cuke_modeler/models/cell.rb
@@ -1,6 +1,5 @@
module CukeModeler
- # A class modeling a single cell of a row.
class Cell < Model
include Sourceable | Break some more stuff
Adding a break for the documentation and linting jobs, in order to see
how they react. |
diff --git a/salt/engines/sqs_events.py b/salt/engines/sqs_events.py
index <HASH>..<HASH> 100644
--- a/salt/engines/sqs_events.py
+++ b/salt/engines/sqs_events.py
@@ -167,4 +167,6 @@ def start(queue, profile=None, tag='salt/engine/sqs', owner_acct_id=None):
while True:
if not q:
q = sqs.get_q... | Surpress boto WARNING during decode, reference: <URL> |
diff --git a/src/lang/nl/lfm.php b/src/lang/nl/lfm.php
index <HASH>..<HASH> 100644
--- a/src/lang/nl/lfm.php
+++ b/src/lang/nl/lfm.php
@@ -50,6 +50,7 @@ return [
'error-instance' => 'Het geuploade bestand moet een instantie zijn van UploadedFile',
'error-invalid' => 'Ongeldig upload verzoek',
... | Merge pull request #<I> from tvbeek/patch-1
* Add a missing dutch translation line
* Update lfm.php |
diff --git a/mnemosyned/daemon.go b/mnemosyned/daemon.go
index <HASH>..<HASH> 100644
--- a/mnemosyned/daemon.go
+++ b/mnemosyned/daemon.go
@@ -3,6 +3,7 @@ package mnemosyned
import (
"database/sql"
"errors"
+ "fmt"
"io"
"net"
"net/http"
@@ -147,7 +148,7 @@ func (d *Daemon) Run() (err error) {
interceptor :... | grpc user agent has service version as well |
diff --git a/ansible_runner/runner_config.py b/ansible_runner/runner_config.py
index <HASH>..<HASH> 100644
--- a/ansible_runner/runner_config.py
+++ b/ansible_runner/runner_config.py
@@ -288,12 +288,12 @@ class RunnerConfig(object):
output.debug("Not loading settings")
self.settings = dict()
... | Revert accidental indentation change from ac<I>d0. |
diff --git a/test/core_tasks.js b/test/core_tasks.js
index <HASH>..<HASH> 100644
--- a/test/core_tasks.js
+++ b/test/core_tasks.js
@@ -6,6 +6,7 @@ describe('Core: Tasks', function(){
var taskOutput = [];
before(function(done){
+ this.timeout(10000)
specHelper.stopServer(0, function(api){
specHel... | update task tests to slower sample time: |
diff --git a/aws-sdk-core/lib/aws-sdk-core/xml/parser.rb b/aws-sdk-core/lib/aws-sdk-core/xml/parser.rb
index <HASH>..<HASH> 100644
--- a/aws-sdk-core/lib/aws-sdk-core/xml/parser.rb
+++ b/aws-sdk-core/lib/aws-sdk-core/xml/parser.rb
@@ -20,6 +20,21 @@ module Aws
@engine = options[:engine] || self.class.engine
... | Added clarifying docs. |
diff --git a/scripts/documentation/generate.js b/scripts/documentation/generate.js
index <HASH>..<HASH> 100644
--- a/scripts/documentation/generate.js
+++ b/scripts/documentation/generate.js
@@ -139,14 +139,14 @@ async function execute() {
await git.commit(message, [FINAL_SAVE_PATH]);
console.info("\x1b[32m", `Ch... | Remove tmp folder at the end |
diff --git a/src/main/java/com/amashchenko/maven/plugin/gitflow/AbstractGitFlowMojo.java b/src/main/java/com/amashchenko/maven/plugin/gitflow/AbstractGitFlowMojo.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/amashchenko/maven/plugin/gitflow/AbstractGitFlowMojo.java
+++ b/src/main/java/com/amashchenko/maven/p... | Strip some whitespace characters in find branches - closes #<I> |
diff --git a/jre_emul/android/platform/libcore/ojluni/src/main/java/java/net/URL.java b/jre_emul/android/platform/libcore/ojluni/src/main/java/java/net/URL.java
index <HASH>..<HASH> 100644
--- a/jre_emul/android/platform/libcore/ojluni/src/main/java/java/net/URL.java
+++ b/jre_emul/android/platform/libcore/ojluni/src/m... | Issue #<I>: fixed file URLStreamHandler linking. |
diff --git a/tensorflow_probability/python/vi/optimization.py b/tensorflow_probability/python/vi/optimization.py
index <HASH>..<HASH> 100644
--- a/tensorflow_probability/python/vi/optimization.py
+++ b/tensorflow_probability/python/vi/optimization.py
@@ -135,10 +135,10 @@ def fit_surrogate_posterior(target_log_prob_fn,... | Fix a typo in the description of fit_surrogate_posterior |
diff --git a/lib/rdo/colored_logger.rb b/lib/rdo/colored_logger.rb
index <HASH>..<HASH> 100644
--- a/lib/rdo/colored_logger.rb
+++ b/lib/rdo/colored_logger.rb
@@ -15,9 +15,9 @@ module RDO
self.formatter =
Proc.new do |severity, time, prog, msg|
case severity
- when "DEBUG" then "\033... | Use cross-platform line-endings in logger |
diff --git a/doc/conf.py b/doc/conf.py
index <HASH>..<HASH> 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -61,9 +61,9 @@ copyright = u'2015, Jeong-Yoon Lee'
# built documents.
#
# The short X.Y version.
-version = '0.4'
+version = '0.5'
# The full version, including alpha/beta/rc tags.
-release = '0.4.4'
+release =... | update version number to <I> |
diff --git a/lenses/lens.py b/lenses/lens.py
index <HASH>..<HASH> 100644
--- a/lenses/lens.py
+++ b/lenses/lens.py
@@ -24,7 +24,6 @@ lens_methods = [
('norm_', baselens.NormalisingLens),
('setter_', baselens.SetterLens),
('traverse_', baselens.TraverseLens),
- ('trivial_', baselens.TrivialLens),
... | removed useless trivial lens access from api |
diff --git a/lib/abn_search.rb b/lib/abn_search.rb
index <HASH>..<HASH> 100644
--- a/lib/abn_search.rb
+++ b/lib/abn_search.rb
@@ -181,7 +181,7 @@ class ABNSearch
else
if !result[:legal_name].blank? && result[:legal_name].length > 2
result[:name] = result[:legal_name]
- elsif !result[:legal_na... | fixed parse_search_results so that legal_name2 can be used as the name |
diff --git a/mobly/utils.py b/mobly/utils.py
index <HASH>..<HASH> 100644
--- a/mobly/utils.py
+++ b/mobly/utils.py
@@ -19,7 +19,6 @@ import logging
import os
import platform
import portpicker
-import psutil
import random
import re
import signal
@@ -331,6 +330,10 @@ def stop_standing_subprocess(proc, kill_signal=s... | Localize `psutil` usage. (#<I>) |
diff --git a/src/elements/NavLink.js b/src/elements/NavLink.js
index <HASH>..<HASH> 100644
--- a/src/elements/NavLink.js
+++ b/src/elements/NavLink.js
@@ -1,8 +1,9 @@
import styled from 'styled-components';
import theme from '../theme';
-const NavLink = styled.a`
+const NavLink = styled.div`
+ a {
text-deco... | Nav Links style contained <a> tags. |
diff --git a/src/api/helpers/generateWrappers.js b/src/api/helpers/generateWrappers.js
index <HASH>..<HASH> 100644
--- a/src/api/helpers/generateWrappers.js
+++ b/src/api/helpers/generateWrappers.js
@@ -32,7 +32,7 @@ function generateWrappers(cls, types, prefixMap, metadata) {
} = func;
// Don't parse depre... | Fix ignore deprecated methods (ignore since 2) |
diff --git a/src/ol/renderer/dom/domtilelayerrenderer.js b/src/ol/renderer/dom/domtilelayerrenderer.js
index <HASH>..<HASH> 100644
--- a/src/ol/renderer/dom/domtilelayerrenderer.js
+++ b/src/ol/renderer/dom/domtilelayerrenderer.js
@@ -79,15 +79,15 @@ ol.renderer.dom.TileLayer.prototype.renderFrame =
return;
}
... | Structure DOM renderer code to be more similar to WebGL renderer code |
diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -134,8 +134,8 @@ html_theme_options = {
'github_banner': True,
'show_powered_by': False,
'extra_nav_links': {
- 'invenio-openaire@GitHub': 'http://github.com/inveniosoftware/invenio-openai... | docs: autodoc configuration and HTTPS fix
* Replaces HTTP links with HTTPS where possible. |
diff --git a/modules/server/src/main/java/org/jboss/wsf/stack/cxf/JBossWSInvoker.java b/modules/server/src/main/java/org/jboss/wsf/stack/cxf/JBossWSInvoker.java
index <HASH>..<HASH> 100644
--- a/modules/server/src/main/java/org/jboss/wsf/stack/cxf/JBossWSInvoker.java
+++ b/modules/server/src/main/java/org/jboss/wsf/sta... | [JBWS-<I>] Adding comment explaining the workaround; proper fix will come in PicketBox |
diff --git a/geom_test.go b/geom_test.go
index <HASH>..<HASH> 100644
--- a/geom_test.go
+++ b/geom_test.go
@@ -201,6 +201,11 @@ func TestGeoMIsInvert(t *testing.T) {
cpx.Scale(1.5, 2.5)
cpx.Translate(-2, -3)
+ cpx2 := GeoM{}
+ cpx2.Scale(2, 3)
+ cpx2.Rotate(0.234)
+ cpx2.Translate(100, 100)
+
cases := []struct ... | affine: Bug fix: (*GeoM).det() was wrong (#<I>) |
diff --git a/FFmpegMovie.php b/FFmpegMovie.php
index <HASH>..<HASH> 100644
--- a/FFmpegMovie.php
+++ b/FFmpegMovie.php
@@ -202,7 +202,7 @@ class FFmpegMovie implements Serializable {
// Get information about file from ffmpeg
$output = array();
- exec('ffmpeg -i '.$this->movieFile.' 2>... | Security hole patched with escapeshellarg() |
diff --git a/lib/Podio.php b/lib/Podio.php
index <HASH>..<HASH> 100644
--- a/lib/Podio.php
+++ b/lib/Podio.php
@@ -44,7 +44,7 @@ class Podio {
if ($options && !empty($options['session_manager'])) {
if (is_string($options['session_manager']) && class_exists($options['session_manager'])) {
self::$ses... | Both get and set functions should be checked in a session manager object, not twice get. |
diff --git a/spec/current_month_spec.rb b/spec/current_month_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/current_month_spec.rb
+++ b/spec/current_month_spec.rb
@@ -8,11 +8,11 @@ describe Beggar::CurrentMonth do
end
it 'returns weekdays' do
- pending
+ current_month.weekdays.should == 21
end
it ... | Add missing specs for CurrentMonth class |
diff --git a/classes/Util.php b/classes/Util.php
index <HASH>..<HASH> 100644
--- a/classes/Util.php
+++ b/classes/Util.php
@@ -83,6 +83,7 @@ class QM_Util {
self::$file_dirs['go-plugin'] = self::standard_dir( WPMU_PLUGIN_DIR . '/shared-plugins' );
self::$file_dirs['mu-plugin'] = self::standard_dir( WPMU_PLUGI... | Specify a common component type for themes. |
diff --git a/src/SidebarMenu.php b/src/SidebarMenu.php
index <HASH>..<HASH> 100644
--- a/src/SidebarMenu.php
+++ b/src/SidebarMenu.php
@@ -41,12 +41,12 @@ class SidebarMenu extends \hipanel\base\Menu implements \yii\base\BootstrapInter
'tariffs' => [
'label' => Yii::t('hi... | Removed Client and Seller filters from the AdvancedSearch view for non-support |
diff --git a/src/shapes/labels.js b/src/shapes/labels.js
index <HASH>..<HASH> 100644
--- a/src/shapes/labels.js
+++ b/src/shapes/labels.js
@@ -23,7 +23,7 @@ d3plus.shape.labels = function(vars,selection,enter,exit) {
var align = t.anchor || vars.style.labels.align,
tspan = this.tagName == "tspan",
... | fixed cross-browser problem with .getBBox() of tspan element |
diff --git a/lib/swag_dev/project/tools/vagrant/shell.rb b/lib/swag_dev/project/tools/vagrant/shell.rb
index <HASH>..<HASH> 100644
--- a/lib/swag_dev/project/tools/vagrant/shell.rb
+++ b/lib/swag_dev/project/tools/vagrant/shell.rb
@@ -16,6 +16,8 @@ class SwagDev::Project::Tools::Vagrant::Shell
# @return [Hash]
at... | vagrant/shell (tools) minor bugfix |
diff --git a/consumables/js/es2015/index.js b/consumables/js/es2015/index.js
index <HASH>..<HASH> 100644
--- a/consumables/js/es2015/index.js
+++ b/consumables/js/es2015/index.js
@@ -135,8 +135,12 @@ export {
* by searching for elements with `data-component-name` (e.g. `data-loading`) attribute
* or upon DOM events... | [6.x] Hotfix clash between Bluemix.Common and bluemix-components.js (#<I>)
Remove auto init for HeaderNav |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.