diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/flask_cors/extension.py b/flask_cors/extension.py
index <HASH>..<HASH> 100644
--- a/flask_cors/extension.py
+++ b/flask_cors/extension.py
@@ -61,7 +61,11 @@ class CORS(object):
:param origins:
The origin, or list of origins to allow requests from.
The origin(s) may be regular express... | Include examples to specify that schema and port must be included in origins documentation. (#<I>) |
diff --git a/lib/rubocop/cop/style/regexp_literal.rb b/lib/rubocop/cop/style/regexp_literal.rb
index <HASH>..<HASH> 100644
--- a/lib/rubocop/cop/style/regexp_literal.rb
+++ b/lib/rubocop/cop/style/regexp_literal.rb
@@ -170,27 +170,31 @@ module RuboCop
end
def correct_inner_slashes(node, corrector)
-... | Refactor complex method in Style/RegexpLiteral cop
This cop had a relatively complex (ABC = <I>) method `#correct_inner_slashes`.
This change attempts to simplify it by making the method `#search_indices`
less general, and having it take on some of the responsibility that was
previously in `#correct_inner_slashes`. |
diff --git a/superset/views/core.py b/superset/views/core.py
index <HASH>..<HASH> 100755
--- a/superset/views/core.py
+++ b/superset/views/core.py
@@ -2793,7 +2793,7 @@ class Superset(BaseSupersetView): # pylint: disable=too-many-public-methods
.scalar()
)
if welcome_dashboard_id:
- ... | Fixed KeyError by making kwarg explicit (#<I>) |
diff --git a/indra/assemblers/pysb/assembler.py b/indra/assemblers/pysb/assembler.py
index <HASH>..<HASH> 100644
--- a/indra/assemblers/pysb/assembler.py
+++ b/indra/assemblers/pysb/assembler.py
@@ -2101,7 +2101,7 @@ def conversion_assemble_one_step(stmt, model, agent_set, parameters):
sites_dict[site]... | Change object elements to ComplexPattern |
diff --git a/serviced/stats.go b/serviced/stats.go
index <HASH>..<HASH> 100644
--- a/serviced/stats.go
+++ b/serviced/stats.go
@@ -25,9 +25,9 @@ import (
)
const (
- BLKIODIR = "/sys/fs/cgroup/blkio/lxc"
- CPUDIR = "/sys/fs/cgroup/cpuacct/lxc"
- MEMDIR = "/sys/fs/cgroup/memory/lxc"
+ BLKIODIR = "/sys/fs/cgroup/... | don't use lxc specific stats for cgroups |
diff --git a/wikitextparser/spans.py b/wikitextparser/spans.py
index <HASH>..<HASH> 100644
--- a/wikitextparser/spans.py
+++ b/wikitextparser/spans.py
@@ -121,7 +121,6 @@ def parse_to_spans(string):
'wikilinks': wikilink_spans,
'comments': comment_spans,
'exttags': extension_tag_spans,
- ... | remove 'tables': tables from docstring.
Currently I've decided to implemented it in a seprate module. |
diff --git a/src/voeventparse/voevent.py b/src/voeventparse/voevent.py
index <HASH>..<HASH> 100644
--- a/src/voeventparse/voevent.py
+++ b/src/voeventparse/voevent.py
@@ -82,7 +82,7 @@ def loads(s, check_version=True):
Returns:
:py:class:`Voevent`: Root-node of the etree.
Raises:
- exceptions... | DOCS: Fix docs-build for Sphinx <I>.
It seems exceptions must no longer have the `exceptions.` prefix for Intersphinx to handle
them correctly. |
diff --git a/lib/sensor/driver/gps/index.js b/lib/sensor/driver/gps/index.js
index <HASH>..<HASH> 100644
--- a/lib/sensor/driver/gps/index.js
+++ b/lib/sensor/driver/gps/index.js
@@ -36,7 +36,7 @@ function Gps(sensorInfo, options) {
if (addr) {
port = new serialport.SerialPort('/dev/ttyO' + addr, {
- b... | [driver/gps] change default baudRate from <I> to <I> |
diff --git a/android/src/main/java/com/imagepicker/ImagePickerModule.java b/android/src/main/java/com/imagepicker/ImagePickerModule.java
index <HASH>..<HASH> 100644
--- a/android/src/main/java/com/imagepicker/ImagePickerModule.java
+++ b/android/src/main/java/com/imagepicker/ImagePickerModule.java
@@ -307,7 +307,7 @@ p... | Android: fix cancellation handling (#<I>)
- This was broken by #<I>.
- Currently, the response object is empty, lacking the `didCancel` flag. |
diff --git a/ocsp/responder.go b/ocsp/responder.go
index <HASH>..<HASH> 100644
--- a/ocsp/responder.go
+++ b/ocsp/responder.go
@@ -197,8 +197,8 @@ func (rs Responder) ServeHTTP(response http.ResponseWriter, request *http.Reques
expiresIn := int(parsedResponse.NextUpdate.Sub(now) / time.Second)
maxAge = &expiresIn... | Add comment about max-age for stale response |
diff --git a/src/org/opencms/jsp/CmsJspNavBuilder.java b/src/org/opencms/jsp/CmsJspNavBuilder.java
index <HASH>..<HASH> 100644
--- a/src/org/opencms/jsp/CmsJspNavBuilder.java
+++ b/src/org/opencms/jsp/CmsJspNavBuilder.java
@@ -592,7 +592,7 @@ public class CmsJspNavBuilder {
list.add(ne);
// ch... | Fixed problem with navigation levels breaking the site navigation. |
diff --git a/src/api/Search.js b/src/api/Search.js
index <HASH>..<HASH> 100644
--- a/src/api/Search.js
+++ b/src/api/Search.js
@@ -1,7 +1,6 @@
// @flow
import SimpleQueryRequest from './SimpleQueryRequest';
import QueryResponse from './QueryResponse';
-import FieldNames from './FieldNames';
import AuthUtils from '.... | Issue <I>: Remove unused import |
diff --git a/docs/master/sidebar.js b/docs/master/sidebar.js
index <HASH>..<HASH> 100644
--- a/docs/master/sidebar.js
+++ b/docs/master/sidebar.js
@@ -104,7 +104,6 @@ module.exports = [{
'guides/validation',
'guides/relationships',
'guides/file-uploads',
- 'guides/custo... | Docs: remove deleted guide from sidebar |
diff --git a/spec/rester/client_spec.rb b/spec/rester/client_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/rester/client_spec.rb
+++ b/spec/rester/client_spec.rb
@@ -261,8 +261,7 @@ module Rester
end
it 'should return the context back to nil' do
- client.with_context(context) do
- ... | [#<I>] Shorten block |
diff --git a/baselines/deepq/experiments/run_atari.py b/baselines/deepq/experiments/run_atari.py
index <HASH>..<HASH> 100644
--- a/baselines/deepq/experiments/run_atari.py
+++ b/baselines/deepq/experiments/run_atari.py
@@ -23,17 +23,15 @@ def main():
env = make_atari(args.env)
env = bench.Monitor(env, logger.... | Fix argument error in deepq (#<I>)
* Fix argment error in deepq
* Fix argment error in deepq |
diff --git a/libraries/mako/ArrayTo.php b/libraries/mako/ArrayTo.php
index <HASH>..<HASH> 100644
--- a/libraries/mako/ArrayTo.php
+++ b/libraries/mako/ArrayTo.php
@@ -51,7 +51,7 @@ class ArrayTo
{
$data = json_encode($data);
- if(isset($_GET['jsoncallback']))
+ if(!empty($_GET['jsoncallback']))
{
$data ... | Replaced isset with !empty |
diff --git a/src/js/plugin/dendrogram.js b/src/js/plugin/dendrogram.js
index <HASH>..<HASH> 100644
--- a/src/js/plugin/dendrogram.js
+++ b/src/js/plugin/dendrogram.js
@@ -39,7 +39,7 @@
selectedNodeOpacity: null,
collapsedNodeColor: null,
collapsedNodeOpacity: null,
- in... | Renamed "initialize" to "newNodes"; eliminated access to update and exit selections. |
diff --git a/src/from_dom.js b/src/from_dom.js
index <HASH>..<HASH> 100644
--- a/src/from_dom.js
+++ b/src/from_dom.js
@@ -425,7 +425,7 @@ class ParseContext {
// none is found, the element's content nodes are added directly.
addElement(dom) {
let name = dom.nodeName.toLowerCase()
- if (listTags.hasOwnPro... | Fix list normalization in DOM parser
FIX: Fix a bug that prevented non-canonical list structure from being
normalized. |
diff --git a/proctor-webapp-library/src/main/java/com/indeed/proctor/webapp/jobs/EditAndPromoteJob.java b/proctor-webapp-library/src/main/java/com/indeed/proctor/webapp/jobs/EditAndPromoteJob.java
index <HASH>..<HASH> 100644
--- a/proctor-webapp-library/src/main/java/com/indeed/proctor/webapp/jobs/EditAndPromoteJob.jav... | PROW-<I>: Add comments about identifying inactive test |
diff --git a/spec/integration/enqueuing_jobs_spec.rb b/spec/integration/enqueuing_jobs_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/integration/enqueuing_jobs_spec.rb
+++ b/spec/integration/enqueuing_jobs_spec.rb
@@ -9,7 +9,7 @@ describe 'enqueuing jobs to Redis' do
serialized_job = redis.lpop(TEST_QUEUE)
... | update enqueuing integration spec to include wrapper class |
diff --git a/packages/@vue/cli-service/lib/commands/serve.js b/packages/@vue/cli-service/lib/commands/serve.js
index <HASH>..<HASH> 100644
--- a/packages/@vue/cli-service/lib/commands/serve.js
+++ b/packages/@vue/cli-service/lib/commands/serve.js
@@ -76,8 +76,8 @@ module.exports = (api, options) => {
`webpac... | fix hot/hotOnly client check |
diff --git a/lib/rack/tracker/google_analytics/google_analytics.rb b/lib/rack/tracker/google_analytics/google_analytics.rb
index <HASH>..<HASH> 100644
--- a/lib/rack/tracker/google_analytics/google_analytics.rb
+++ b/lib/rack/tracker/google_analytics/google_analytics.rb
@@ -1,5 +1,12 @@
require 'ostruct'
+# Backport... | test backport of ostruct#to_h on travis |
diff --git a/assets/js/ajax-section.js b/assets/js/ajax-section.js
index <HASH>..<HASH> 100644
--- a/assets/js/ajax-section.js
+++ b/assets/js/ajax-section.js
@@ -122,7 +122,7 @@ athens.ajax_section = (function () {
var targetDiv, targetUrl;
targetDiv = $("#" + id);
- if (sectionRegistry.hasO... | Don't store section url. |
diff --git a/tests/commands/test_usage.py b/tests/commands/test_usage.py
index <HASH>..<HASH> 100644
--- a/tests/commands/test_usage.py
+++ b/tests/commands/test_usage.py
@@ -102,7 +102,7 @@ def test_command_config_file():
test_font = os.path.join("data", "test", "nunito", "Nunito-Regular.ttf")
result = subpr... | Avoid <I>ism. |
diff --git a/src/widgets/views/DocumentByMonthButton.php b/src/widgets/views/DocumentByMonthButton.php
index <HASH>..<HASH> 100644
--- a/src/widgets/views/DocumentByMonthButton.php
+++ b/src/widgets/views/DocumentByMonthButton.php
@@ -1,7 +1,7 @@
<?php
use hipanel\widgets\ModalButton;
-use kartik\date\DatePicker;
+... | replaced DatePicker class with DateTimePicker (#<I>)
* removed DatePicker class
* fixed datetime widget clicking bug |
diff --git a/lib/code_climate_check/compare_gpa.rb b/lib/code_climate_check/compare_gpa.rb
index <HASH>..<HASH> 100644
--- a/lib/code_climate_check/compare_gpa.rb
+++ b/lib/code_climate_check/compare_gpa.rb
@@ -2,7 +2,6 @@ require 'code_climate_check/get_gpa'
module CodeClimateCheck
class CompareGpa
-
def in... | Remove extra empty line in compare_gpa |
diff --git a/lib/puppet/parser/resource.rb b/lib/puppet/parser/resource.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/parser/resource.rb
+++ b/lib/puppet/parser/resource.rb
@@ -5,8 +5,6 @@ require 'puppet/resource'
# parent is that this class has rules on who can set
# parameters
class Puppet::Parser::Resource < P... | (#<I>) Remove 2 def_delegator's in favor of explicit method invocations. |
diff --git a/dp_tornado/helper/numeric/__init__.py b/dp_tornado/helper/numeric/__init__.py
index <HASH>..<HASH> 100644
--- a/dp_tornado/helper/numeric/__init__.py
+++ b/dp_tornado/helper/numeric/__init__.py
@@ -25,7 +25,22 @@ class NumericHelper(dpHelper):
return re.sub(r'\D+', '', string)
def number_fo... | enhanced type casting for number_format. |
diff --git a/mailmerge/sendmail_client.py b/mailmerge/sendmail_client.py
index <HASH>..<HASH> 100644
--- a/mailmerge/sendmail_client.py
+++ b/mailmerge/sendmail_client.py
@@ -70,12 +70,7 @@ class SendmailClient:
)
def sendmail(self, sender, recipients, message):
- """Send email message.
-
- ... | Kill comment. We can't use send_message() because of BCC privacy |
diff --git a/motion/ruby_motion_query/app.rb b/motion/ruby_motion_query/app.rb
index <HASH>..<HASH> 100644
--- a/motion/ruby_motion_query/app.rb
+++ b/motion/ruby_motion_query/app.rb
@@ -32,6 +32,19 @@ module RubyMotionQuery
UIApplication.sharedApplication.delegate
end
+ # @return [UIApplication]... | code to hide keyboard from rmq.app added |
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -7,4 +7,7 @@ begin
rescue LoadError
end
+# https://github.com/geemus/excon/issues/142#issuecomment-8531521
+Excon.defaults[:nonblock] = false if RUBY_PLATFORM == 'java'
+
requir... | Use blocking connect if running on JRuby |
diff --git a/safe/impact_functions/loader.py b/safe/impact_functions/loader.py
index <HASH>..<HASH> 100644
--- a/safe/impact_functions/loader.py
+++ b/safe/impact_functions/loader.py
@@ -67,6 +67,8 @@ from safe.impact_functions.volcanic.volcano_point_population\
# Volcanic Ash
from safe.impact_functions.ash.ash_raste... | Add ash raster IF to loader. |
diff --git a/azurerm/resource_arm_dns_cname_record.go b/azurerm/resource_arm_dns_cname_record.go
index <HASH>..<HASH> 100644
--- a/azurerm/resource_arm_dns_cname_record.go
+++ b/azurerm/resource_arm_dns_cname_record.go
@@ -47,9 +47,8 @@ func resourceArmDnsCNameRecord() *schema.Resource {
},
"records": {
- ... | r/cname_record: `records` is a string, albeit deprecated |
diff --git a/src/tests/test_definitions.py b/src/tests/test_definitions.py
index <HASH>..<HASH> 100644
--- a/src/tests/test_definitions.py
+++ b/src/tests/test_definitions.py
@@ -223,7 +223,7 @@ def test_import_parser():
source_future_import_invalid7,
source_future_import_invalid8,
... | Fix parser test case for invalid source
Commit e<I> introduced some tests that intend to iterate over strings
that contain definitions of invalid source code and then assert that the
parser does something sensible with these sources.
However, there was a typo in e<I> causing the tests to not execute as
expected: the i... |
diff --git a/src/python/dxpy/scripts/dx_build_app.py b/src/python/dxpy/scripts/dx_build_app.py
index <HASH>..<HASH> 100755
--- a/src/python/dxpy/scripts/dx_build_app.py
+++ b/src/python/dxpy/scripts/dx_build_app.py
@@ -242,7 +242,9 @@ def _lint(dxapp_json_filename, mode):
readme_filename = _find_readme(os.path... | PTFM-<I> Don't allow "description" field to shadow Readme.md |
diff --git a/src/box.js b/src/box.js
index <HASH>..<HASH> 100644
--- a/src/box.js
+++ b/src/box.js
@@ -100,7 +100,8 @@ Taaspace.Box = (function () {
Box.prototype.area = function () {
return this.w * this.h;
};
-
+
+
// Mutators | .area() added to box. |
diff --git a/examples/life.py b/examples/life.py
index <HASH>..<HASH> 100644
--- a/examples/life.py
+++ b/examples/life.py
@@ -153,6 +153,7 @@ def main():
else:
time.sleep(0.01)
tdl.flush()
+ tdl.set_title("Conway's Game of Life - %i FPS" % tdl.get_fps())
if __name... | added FPS counter to life.py |
diff --git a/test/scheduler.js b/test/scheduler.js
index <HASH>..<HASH> 100644
--- a/test/scheduler.js
+++ b/test/scheduler.js
@@ -58,8 +58,8 @@ describe('Scheduler', function(){
- describe('#spawnWorker_p', function(done){
- it('properly stores provided data.', function(){
+ describe('#spawnWorker_p', funct... | Properly placed one more done() callback. |
diff --git a/src/Symfony/Bridge/Doctrine/Tests/Logger/DbalLoggerTest.php b/src/Symfony/Bridge/Doctrine/Tests/Logger/DbalLoggerTest.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Bridge/Doctrine/Tests/Logger/DbalLoggerTest.php
+++ b/src/Symfony/Bridge/Doctrine/Tests/Logger/DbalLoggerTest.php
@@ -18,7 +18,7 @@ class D... | [Doctrine] removed usage of the deprecated LoggerInterface in some tests |
diff --git a/lib/Thelia/Core/Template/Element/BaseLoop.php b/lib/Thelia/Core/Template/Element/BaseLoop.php
index <HASH>..<HASH> 100755
--- a/lib/Thelia/Core/Template/Element/BaseLoop.php
+++ b/lib/Thelia/Core/Template/Element/BaseLoop.php
@@ -69,14 +69,16 @@ abstract class BaseLoop
*/
public function __const... | instanciate translator before checking loop class interface |
diff --git a/tasks/grunt-mochaccino.js b/tasks/grunt-mochaccino.js
index <HASH>..<HASH> 100644
--- a/tasks/grunt-mochaccino.js
+++ b/tasks/grunt-mochaccino.js
@@ -21,6 +21,7 @@
module.exports = function (grunt) {
'use strict';
+ var os = require('os');
var fs = require('fs');
var path = require('path');
... | Use cmd.exe to call mocha batch file on Windows |
diff --git a/src/leaflet_layer.js b/src/leaflet_layer.js
index <HASH>..<HASH> 100755
--- a/src/leaflet_layer.js
+++ b/src/leaflet_layer.js
@@ -132,7 +132,10 @@ function extendLeaflet(options) {
this.modifyScrollWheelBehavior(map);
this.modifyDoubleClickZoom(map);
debou... | leaflet layer: call viewreset with moveend |
diff --git a/insights/core/dr.py b/insights/core/dr.py
index <HASH>..<HASH> 100644
--- a/insights/core/dr.py
+++ b/insights/core/dr.py
@@ -274,13 +274,16 @@ def get_subgraphs(graph=DEPENDENCIES):
def load_components(path, include=".*", exclude="test"):
- include = re.compile(include).search if include else lamb... | Fix load_components when importing from eggs. |
diff --git a/providers/core.tcpsocket.js b/providers/core.tcpsocket.js
index <HASH>..<HASH> 100644
--- a/providers/core.tcpsocket.js
+++ b/providers/core.tcpsocket.js
@@ -71,8 +71,8 @@ TcpSocket_node.prototype.getInfo = function (callback) {
connected: this.connection.state === TcpSocket_node.state.CONNECTED,
... | Fix TCP socket provider to pass the unit test.
The provider was using |connection.localAddress| to populate the response
from getInfo, but node does not fill in |localAddress| for server sockets.
However, both client and server sockets provide their local address
through the |address()| getter. |
diff --git a/salt/utils/http.py b/salt/utils/http.py
index <HASH>..<HASH> 100644
--- a/salt/utils/http.py
+++ b/salt/utils/http.py
@@ -921,6 +921,7 @@ def parse_cookie_header(header):
for item in list(cookie):
if item in attribs:
continue
+ name = item
valu... | Fix parse_cookie_header function cookie name always None
parse_cookie_header function is used when backend is tornado. But cookie
name is always None, because programe not set name correct value |
diff --git a/tasks.py b/tasks.py
index <HASH>..<HASH> 100644
--- a/tasks.py
+++ b/tasks.py
@@ -6,7 +6,7 @@ from django.conf import settings
from celery.decorators import task
-from .models import EventWatch
+from notifications.models import EventWatch
log = logging.getLogger('k.notifications')
@@ -29,7 +29,11... | send_mass_mail() swallows errors and continues [bug <I>] |
diff --git a/java/server/src/org/openqa/grid/internal/TestSession.java b/java/server/src/org/openqa/grid/internal/TestSession.java
index <HASH>..<HASH> 100644
--- a/java/server/src/org/openqa/grid/internal/TestSession.java
+++ b/java/server/src/org/openqa/grid/internal/TestSession.java
@@ -306,6 +306,7 @@ public class ... | KevinMenard: Update the test session activity when a command response is received as well.
r<I> |
diff --git a/bazaar/bazaar.py b/bazaar/bazaar.py
index <HASH>..<HASH> 100644
--- a/bazaar/bazaar.py
+++ b/bazaar/bazaar.py
@@ -4,6 +4,7 @@ from fs import open_fs
from datetime import datetime
import os
import six
+import re
FileAttrs = namedtuple('FileAttrs', ["created", "updated", "name", "size", "namespace"])
... | Escape special chars for weird names |
diff --git a/lib/mountain_view/engine.rb b/lib/mountain_view/engine.rb
index <HASH>..<HASH> 100644
--- a/lib/mountain_view/engine.rb
+++ b/lib/mountain_view/engine.rb
@@ -31,8 +31,8 @@ module MountainView
initializer "mountain_view.add_helpers" do
ActiveSupport.on_load :action_controller do
- helpe... | Fix nomethoderror when including helpers
Explicitly calls helper inclusion via ActionController::Base,
preventing errors in Rails <I> (Issue#<I>). |
diff --git a/plenum/client/client.py b/plenum/client/client.py
index <HASH>..<HASH> 100644
--- a/plenum/client/client.py
+++ b/plenum/client/client.py
@@ -117,7 +117,7 @@ class Client(Motor):
if wallet:
self.wallet = wallet
else:
- storage = WalletStorageFile.fromName(name, bas... | bug fixed by using the correct client name |
diff --git a/builtin/providers/aws/resource_aws_dynamodb_table.go b/builtin/providers/aws/resource_aws_dynamodb_table.go
index <HASH>..<HASH> 100644
--- a/builtin/providers/aws/resource_aws_dynamodb_table.go
+++ b/builtin/providers/aws/resource_aws_dynamodb_table.go
@@ -346,7 +346,10 @@ func resourceAwsDynamoDbTableCre... | provider/aws: aws_dynamodb_table Add support for TimeToLive. Fix errcheck |
diff --git a/Processor.php b/Processor.php
index <HASH>..<HASH> 100644
--- a/Processor.php
+++ b/Processor.php
@@ -376,16 +376,8 @@ class Processor
$propertyContainer = $this->getPropertyDefinition($activectx, $property, '@container');
- if (in_array($propertyContainer, array('@langu... | Only invoke language and annotation map expansion if the value is a JSON object
This addresses #<I> and #<I>. |
diff --git a/ssbio/protein/structure/properties/residues.py b/ssbio/protein/structure/properties/residues.py
index <HASH>..<HASH> 100644
--- a/ssbio/protein/structure/properties/residues.py
+++ b/ssbio/protein/structure/properties/residues.py
@@ -57,8 +57,11 @@ def search_ss_bonds(model, threshold=3.0):
bridges ... | Skip over CYS residues with no SG atoms in find_disulfide_bridges
(cherry picked from commit d<I>cebe) |
diff --git a/sdk/src/api.js b/sdk/src/api.js
index <HASH>..<HASH> 100644
--- a/sdk/src/api.js
+++ b/sdk/src/api.js
@@ -101,6 +101,8 @@ export default class API {
async pushModule(name, directory, system = false) {
const dest = path.join(system ? SILK_MODULE_ROOT : DATA_MODULE_ROOT, name);
+ await this.adb(... | adb root before remounting |
diff --git a/src/lib.js b/src/lib.js
index <HASH>..<HASH> 100644
--- a/src/lib.js
+++ b/src/lib.js
@@ -28,8 +28,8 @@ const dePseudify = (function () {
*/
'::?-(?:moz|ms|webkit|o)-[a-z0-9-]+'
],
- // Actual regex is of the format: /([^\\])(:hover|:focus)/g
- pseudosRegex... | Fix dePseudify() regression when multiple ignored
If the `selector` here has multiple pseudo elements attached to it, then
this new "escape-aware" regular expression doesn't work without allowing
adding a quantifier after the closing parenthesis for the ignored
pseudos. |
diff --git a/library/Public.php b/library/Public.php
index <HASH>..<HASH> 100644
--- a/library/Public.php
+++ b/library/Public.php
@@ -136,11 +136,10 @@ if (!function_exists('municipio_get_mime_link_item')) {
if (!function_exists('municipio_to_aspect_ratio')) {
function municipio_to_aspect_ratio($ratio, $size)
... | Check that ratio is set before calculating. |
diff --git a/merb-gen/lib/generators/merb/merb_flat.rb b/merb-gen/lib/generators/merb/merb_flat.rb
index <HASH>..<HASH> 100644
--- a/merb-gen/lib/generators/merb/merb_flat.rb
+++ b/merb-gen/lib/generators/merb/merb_flat.rb
@@ -16,6 +16,8 @@ module Merb::Generators
glob!
+ empty_directory :gems, 'gem... | Added empty ./gems dir for merb-gen app (and --flat) |
diff --git a/indra/assemblers/__init__.py b/indra/assemblers/__init__.py
index <HASH>..<HASH> 100644
--- a/indra/assemblers/__init__.py
+++ b/indra/assemblers/__init__.py
@@ -38,3 +38,7 @@ try:
from indra.assemblers.pybel_assembler import PybelAssembler
except ImportError:
pass
+try:
+ from indra.assemble... | Expose Figaro assembler in assemblers module |
diff --git a/src/org/jgroups/protocols/pbcast/FLUSH.java b/src/org/jgroups/protocols/pbcast/FLUSH.java
index <HASH>..<HASH> 100644
--- a/src/org/jgroups/protocols/pbcast/FLUSH.java
+++ b/src/org/jgroups/protocols/pbcast/FLUSH.java
@@ -523,8 +523,7 @@ public class FLUSH extends Protocol
}
private void onStartF... | moved blocking on FLUSH.down() from START_FLUSH to FLUSH_OK |
diff --git a/gym/lib/gym/version.rb b/gym/lib/gym/version.rb
index <HASH>..<HASH> 100644
--- a/gym/lib/gym/version.rb
+++ b/gym/lib/gym/version.rb
@@ -1,4 +1,4 @@
module Gym
- VERSION = "1.8.0"
+ VERSION = "1.9.0"
DESCRIPTION = "Building your iOS apps has never been easier"
end | Version Bump (#<I>) |
diff --git a/src/satosa/satosa_config.py b/src/satosa/satosa_config.py
index <HASH>..<HASH> 100644
--- a/src/satosa/satosa_config.py
+++ b/src/satosa/satosa_config.py
@@ -50,7 +50,7 @@ class SATOSAConfig(object):
self._config["INTERNAL_ATTRIBUTES"] = _internal_attributes
break
... | Fix typo in exception in SATOSAConfig constructor. |
diff --git a/src/bundle/Controller/ContentOnTheFlyController.php b/src/bundle/Controller/ContentOnTheFlyController.php
index <HASH>..<HASH> 100644
--- a/src/bundle/Controller/ContentOnTheFlyController.php
+++ b/src/bundle/Controller/ContentOnTheFlyController.php
@@ -295,14 +295,6 @@ class ContentOnTheFlyController exte... | EZP-<I>: Fixed CotF blank screen after publishing (#<I>) |
diff --git a/code/javascript/core/scripts/selenium-api.js b/code/javascript/core/scripts/selenium-api.js
index <HASH>..<HASH> 100644
--- a/code/javascript/core/scripts/selenium-api.js
+++ b/code/javascript/core/scripts/selenium-api.js
@@ -880,7 +880,7 @@ Selenium.prototype.getWhetherThisWindowMatchWindowExpression = fu... | Fix problem in getWhetherThisWindowMatchWindowExpression: use the value of the variable target, not the literal string "target"
r<I> |
diff --git a/src/python/turicreate/toolkits/activity_classifier/_activity_classifier.py b/src/python/turicreate/toolkits/activity_classifier/_activity_classifier.py
index <HASH>..<HASH> 100644
--- a/src/python/turicreate/toolkits/activity_classifier/_activity_classifier.py
+++ b/src/python/turicreate/toolkits/activity_... | Activity classifier bug fix: don't pass unrecognized options to C++ (#<I>) |
diff --git a/src/Model/Draft/CategoryDraft.php b/src/Model/Draft/CategoryDraft.php
index <HASH>..<HASH> 100644
--- a/src/Model/Draft/CategoryDraft.php
+++ b/src/Model/Draft/CategoryDraft.php
@@ -11,7 +11,6 @@ use Sphere\Core\Model\OfTrait;
use Sphere\Core\Model\Type\CategoryReference;
use Sphere\Core\Model\Type\JsonO... | removed unused statement, update doc block for abstract query request |
diff --git a/code/media/koowa/com_koowa/js/koowa.select2.js b/code/media/koowa/com_koowa/js/koowa.select2.js
index <HASH>..<HASH> 100644
--- a/code/media/koowa/com_koowa/js/koowa.select2.js
+++ b/code/media/koowa/com_koowa/js/koowa.select2.js
@@ -29,7 +29,14 @@
//Workaround for Select2 refusing to ajaxif... | re #<I> first version of <select> workaround |
diff --git a/src/main/java/org/jmxtrans/embedded/output/StackdriverWriter.java b/src/main/java/org/jmxtrans/embedded/output/StackdriverWriter.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/jmxtrans/embedded/output/StackdriverWriter.java
+++ b/src/main/java/org/jmxtrans/embedded/output/StackdriverWriter.java
@... | use UTF-8 instead of relying on default charset, solves findBugs issue as well as being better form in general |
diff --git a/tilequeue/utils.py b/tilequeue/utils.py
index <HASH>..<HASH> 100644
--- a/tilequeue/utils.py
+++ b/tilequeue/utils.py
@@ -32,12 +32,12 @@ def grouper(iterable, n):
def parse_log_file(log_file):
- ip_pattern = '(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})'
+ ip_pattern = r'(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{... | Use raw strings for patterns with regular expression rather than Python escape sequences. |
diff --git a/boundary/metric_modify.py b/boundary/metric_modify.py
index <HASH>..<HASH> 100644
--- a/boundary/metric_modify.py
+++ b/boundary/metric_modify.py
@@ -13,8 +13,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
-from boundary import MetricCommon... | Superious comma was sending tuple which translated to a JSON array and caused and error |
diff --git a/lib/omnibus.rb b/lib/omnibus.rb
index <HASH>..<HASH> 100644
--- a/lib/omnibus.rb
+++ b/lib/omnibus.rb
@@ -86,13 +86,28 @@ module Omnibus
generate_extra_rake_tasks
end
- # All the {Omnibus::Project} objects that have been created.
+ # All {Omnibus::Project} instances that have been created.
#... | Add `Omnibus.projects` and `Omnibus.project` methods
These helpers aid in common project-related tasks. |
diff --git a/lib/expression/expression.js b/lib/expression/expression.js
index <HASH>..<HASH> 100644
--- a/lib/expression/expression.js
+++ b/lib/expression/expression.js
@@ -501,7 +501,7 @@ Expression.setMethod(function getTokenValuesArray(tokens, vars) {
*
* @author Jelle De Loecker <jelle@develry.be>
* @si... | Calling a non-existant method in a hawkejs expression will not throw an error but return undefined |
diff --git a/webview/win32.py b/webview/win32.py
index <HASH>..<HASH> 100644
--- a/webview/win32.py
+++ b/webview/win32.py
@@ -159,9 +159,9 @@ class BrowserView(object):
atl_width = self.width - self.scrollbar_width
atl_height = self.height - self.scrollbar_height - VERTICAL_SCROLLBAR_OFFSET
... | Change how URL is loaded on an initial window display in Windows |
diff --git a/salt/utils/find.py b/salt/utils/find.py
index <HASH>..<HASH> 100644
--- a/salt/utils/find.py
+++ b/salt/utils/find.py
@@ -495,6 +495,9 @@ class Finder(object):
_REQUIRES_STAT: list(),
_REQUIRES_CONTENTS: list()}
for key, value in options.iteritems():
+ ... | Check for transparent objects in file finder, fix # <I> |
diff --git a/config/platform/windows.rb b/config/platform/windows.rb
index <HASH>..<HASH> 100644
--- a/config/platform/windows.rb
+++ b/config/platform/windows.rb
@@ -413,7 +413,11 @@ module RightScale
class Controller
# Shutdown machine now
def shutdown
- `shutdown -s -f -t 01`
+ ... | Make shutdown work on Windows <I> bit |
diff --git a/lib/devise_security_extension/models/password_archivable.rb b/lib/devise_security_extension/models/password_archivable.rb
index <HASH>..<HASH> 100644
--- a/lib/devise_security_extension/models/password_archivable.rb
+++ b/lib/devise_security_extension/models/password_archivable.rb
@@ -10,7 +10,7 @@ module ... | Fix: Save old password in archive only on update |
diff --git a/src/notebook/reducers/document.js b/src/notebook/reducers/document.js
index <HASH>..<HASH> 100644
--- a/src/notebook/reducers/document.js
+++ b/src/notebook/reducers/document.js
@@ -56,10 +56,10 @@ export default handleActions({
[constants.TOGGLE_STICKY_CELL]: function toggleStickyCell(state, action) {
... | refactor(reducers): Use Immutable.Set in toggleStickyCell |
diff --git a/packages/grpc-native-core/gulpfile.js b/packages/grpc-native-core/gulpfile.js
index <HASH>..<HASH> 100644
--- a/packages/grpc-native-core/gulpfile.js
+++ b/packages/grpc-native-core/gulpfile.js
@@ -68,7 +68,7 @@ gulp.task('build', 'Build native package', () => {
});
gulp.task('test', 'Run all tests', [... | Increasing mocha timeout to 5s up from 2s.
Our fleet of macos is a bit less powerful than the rest, so we
regularly flake tests there due to this timeout. |
diff --git a/tests/status_code.py b/tests/status_code.py
index <HASH>..<HASH> 100644
--- a/tests/status_code.py
+++ b/tests/status_code.py
@@ -5,19 +5,11 @@
# license that can be found in the LICENSE file.
from .fake_webapp import EXAMPLE_APP
-from splinter.request_handler.status_code import HttpResponseError
... | tests/status_code: join status ok tests |
diff --git a/babylon-to-espree/toAST.js b/babylon-to-espree/toAST.js
index <HASH>..<HASH> 100644
--- a/babylon-to-espree/toAST.js
+++ b/babylon-to-espree/toAST.js
@@ -206,11 +206,6 @@ var astTransformVisitor = {
}
}
- // remove class property keys (or patch in escope)
- if (path.isClassProperty()) {... | Create a variable for class properties in scope instead of deleting the key (#<I>) |
diff --git a/pyoko/db/queryset.py b/pyoko/db/queryset.py
index <HASH>..<HASH> 100644
--- a/pyoko/db/queryset.py
+++ b/pyoko/db/queryset.py
@@ -171,7 +171,9 @@ class QuerySet(object):
_pass_perm_checks=self._pass_perm_checks)
model.setattr('key', ub_to_str(key) if key else u... | ADD: make `make_model` method to set initial data attr to track changes rref #<I> |
diff --git a/src/ORM/Association/HasMany.php b/src/ORM/Association/HasMany.php
index <HASH>..<HASH> 100644
--- a/src/ORM/Association/HasMany.php
+++ b/src/ORM/Association/HasMany.php
@@ -16,6 +16,8 @@
namespace Cake\ORM\Association;
use Cake\Collection\Collection;
+use Cake\Database\Expression\FieldInterface;
+use ... | Update HasMany to avoid ambigous columns
I've changed the conditions from a basic array to a QueryExpression,
which I aftewards traverse to add alias to all fields. |
diff --git a/pynYNAB/Client.py b/pynYNAB/Client.py
index <HASH>..<HASH> 100644
--- a/pynYNAB/Client.py
+++ b/pynYNAB/Client.py
@@ -123,7 +123,7 @@ class nYnabClient(object):
request_data = dict(starting_device_knowledge=self.current_device_knowledge[opname],
ending_device_knowl... | regression to not being able to push changed entities |
diff --git a/openpnm/utils/Workspace.py b/openpnm/utils/Workspace.py
index <HASH>..<HASH> 100644
--- a/openpnm/utils/Workspace.py
+++ b/openpnm/utils/Workspace.py
@@ -344,7 +344,7 @@ class Workspace(dict):
# If _next_id has not been set, then assign it
self._next_id = 0
# But chec... | fixing bug in id gen |
diff --git a/unleash/plugins/tox_tests.py b/unleash/plugins/tox_tests.py
index <HASH>..<HASH> 100644
--- a/unleash/plugins/tox_tests.py
+++ b/unleash/plugins/tox_tests.py
@@ -38,6 +38,6 @@ def lint_release(ctx):
with VirtualEnv.temporary() as ve, in_tmpexport(ctx['commit']):
ve.pip_install('tox')
... | Use get_binary in tox tests. |
diff --git a/aiohttp/web_urldispatcher.py b/aiohttp/web_urldispatcher.py
index <HASH>..<HASH> 100644
--- a/aiohttp/web_urldispatcher.py
+++ b/aiohttp/web_urldispatcher.py
@@ -859,9 +859,10 @@ class UrlDispatcher(AbstractRouter, collections.abc.Mapping):
route is added allowing head requests to the same endpoin... | fix allow-head to include name on route |
diff --git a/concurrency/fields.py b/concurrency/fields.py
index <HASH>..<HASH> 100755
--- a/concurrency/fields.py
+++ b/concurrency/fields.py
@@ -88,7 +88,7 @@ class VersionField(Field):
def contribute_to_class(self, cls, name, virtual_only=False):
super(VersionField, self).contribute_to_class(cls, nam... | Don't create triggers on abstract classes
Abstract classes have no database table, so creating a trigger for them causes an error. This patch checks that `cls._meta.abstract` is False before adding the trigger to the `TRIGGERS` list. |
diff --git a/src/CyberSpectrum/Command/CommandBase.php b/src/CyberSpectrum/Command/CommandBase.php
index <HASH>..<HASH> 100644
--- a/src/CyberSpectrum/Command/CommandBase.php
+++ b/src/CyberSpectrum/Command/CommandBase.php
@@ -230,7 +230,7 @@ abstract class CommandBase extends Command
}
if (!$this->skipFi... | Adjusted loading the skip files config from configurable config path |
diff --git a/src/Formatter/Coordinate/DMS.php b/src/Formatter/Coordinate/DMS.php
index <HASH>..<HASH> 100644
--- a/src/Formatter/Coordinate/DMS.php
+++ b/src/Formatter/Coordinate/DMS.php
@@ -61,7 +61,7 @@ class DMS implements FormatterInterface
{
$this->separator = $separator;
$this->use... | don't use late static binding for class constants |
diff --git a/app/Elements/IndividualRecord.php b/app/Elements/IndividualRecord.php
index <HASH>..<HASH> 100644
--- a/app/Elements/IndividualRecord.php
+++ b/app/Elements/IndividualRecord.php
@@ -60,6 +60,7 @@ class IndividualRecord extends AbstractElement
'IDNO' => '0:M',
'IMMI' => '0:M',
'NA... | added NATI - nationality (#<I>) |
diff --git a/stdeb/command/bdist_deb.py b/stdeb/command/bdist_deb.py
index <HASH>..<HASH> 100644
--- a/stdeb/command/bdist_deb.py
+++ b/stdeb/command/bdist_deb.py
@@ -1,6 +1,5 @@
import os
import stdeb.util as util
-from stdeb.command.sdist_dsc import sdist_dsc
from distutils.core import Command
@@ -22,8 +21,11 ... | bdist_deb: get dist_dir option passed to sdist_dsc command |
diff --git a/lib/models/index.js b/lib/models/index.js
index <HASH>..<HASH> 100644
--- a/lib/models/index.js
+++ b/lib/models/index.js
@@ -1,4 +1,4 @@
-
+require('mongoose').models = {};
module.exports = {
InviteCode: require('./invite'),
Job: require('./job'), | fix mongoose models code reloading issue |
diff --git a/lib/pluginlib.php b/lib/pluginlib.php
index <HASH>..<HASH> 100644
--- a/lib/pluginlib.php
+++ b/lib/pluginlib.php
@@ -221,12 +221,18 @@ class plugin_manager {
/**
* Returns a localized name of a given plugin
*
- * @param string $plugin name of the plugin, eg mod_workshop or auth_ldap
+... | MDL-<I> Fix plugin_manager::plugin_name() implementation
This is not directly related to the issue. However, it turned out that
if this method was called on plugin_manager without loaded plugins, it
would throw an error. This new implementation uses cleaner access to the
plugininfo subclass. |
diff --git a/scripts/code-viewer.js b/scripts/code-viewer.js
index <HASH>..<HASH> 100644
--- a/scripts/code-viewer.js
+++ b/scripts/code-viewer.js
@@ -172,6 +172,7 @@
let encoded = this.responseText;
encoded = window.html_beautify(encoded, {indent_size: 2, wrap_line_length: 0});
encoded = window.he... | further beautification of html code in viewer |
diff --git a/spyder/plugins/projects/plugin.py b/spyder/plugins/projects/plugin.py
index <HASH>..<HASH> 100644
--- a/spyder/plugins/projects/plugin.py
+++ b/spyder/plugins/projects/plugin.py
@@ -266,9 +266,15 @@ class Projects(SpyderPluginWidget):
dlg.sig_project_creation_requested.connect(self._create_project... | Projects: Emit sig_project_closed when switching projects
- This can happen either when you have an open project and (i) Change to
another, existing project; or (ii) Create a new project.
- It's important to emit that signal to let the LSP know that the
previous open project needs to be removed from the workspace.
- T... |
diff --git a/src/Auditable.php b/src/Auditable.php
index <HASH>..<HASH> 100644
--- a/src/Auditable.php
+++ b/src/Auditable.php
@@ -55,7 +55,10 @@ trait Auditable
*/
public function audits()
{
- return $this->morphMany(Config::get('audit.implementation'), 'auditable');
+ return $this->morph... | fix(Auditable): set OwenIt\Auditing\Models\Audit as default Audit implementation |
diff --git a/logging/mock.go b/logging/mock.go
index <HASH>..<HASH> 100644
--- a/logging/mock.go
+++ b/logging/mock.go
@@ -57,12 +57,12 @@ func (m writerMap) CheckWrittenAtLevel(t *testing.T, lv LogLevel, exp string) {
} else {
w = m[lv]
}
- if len(w.written) < 32 {
+ // 32 bytes covers the date, time and filena... | Hmm, slice out of range error, wtf x2. |
diff --git a/src/editor/ImageViewer.js b/src/editor/ImageViewer.js
index <HASH>..<HASH> 100644
--- a/src/editor/ImageViewer.js
+++ b/src/editor/ImageViewer.js
@@ -205,6 +205,7 @@ define(function (require, exports, module) {
function render(fullPath) {
var relPath = ProjectManager.makeProjectRelativeIfPoss... | Moving the initialization to the top of render function. |
diff --git a/src/Models/Tenant.php b/src/Models/Tenant.php
index <HASH>..<HASH> 100644
--- a/src/Models/Tenant.php
+++ b/src/Models/Tenant.php
@@ -132,8 +132,6 @@ class Tenant extends BaseTenant implements HasMedia
$this->mergeCasts(['social' => 'array', 'style' => 'string']);
$this->mergeRules(['so... | Remove duplicate `setTable` method call override as it's already called in parent class |
diff --git a/nanoget/nanoget.py b/nanoget/nanoget.py
index <HASH>..<HASH> 100644
--- a/nanoget/nanoget.py
+++ b/nanoget/nanoget.py
@@ -265,7 +265,7 @@ def process_fastq_plain(fastq, threads):
pool = Pool(processes=threads)
try:
output = [results for results in pool.imap(
- extract_from_fas... | change not is None to is not None |
diff --git a/code/forms/Users_RegisterForm.php b/code/forms/Users_RegisterForm.php
index <HASH>..<HASH> 100755
--- a/code/forms/Users_RegisterForm.php
+++ b/code/forms/Users_RegisterForm.php
@@ -32,6 +32,10 @@ class Users_RegisterForm extends Form {
*/
public function __construct($controller, $name) {
+ ... | Allow tracking of a back URL when a user completes the register form |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.