title
stringlengths
2
169
diff
stringlengths
235
19.5k
body
stringlengths
0
30.5k
url
stringlengths
48
84
created_at
stringlengths
20
20
closed_at
stringlengths
20
20
merged_at
stringlengths
20
20
updated_at
stringlengths
20
20
diff_len
float64
101
3.99k
repo_name
stringclasses
83 values
__index_level_0__
int64
15
52.7k
Reduce number of pyright checks
diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index db28150dc5c..95e7dfc0a6a 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -19,8 +19,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-platform: [ "Linux", ...
Hello, I have implemented this per my understanding of issue #2494 .
https://api.github.com/repos/openai/gym/pulls/2495
2021-11-21T09:34:39Z
2021-11-22T21:38:33Z
2021-11-22T21:38:33Z
2021-11-22T21:38:33Z
184
openai/gym
5,445
Fix HtmlParserLinkExtractor and tests after #485 merge
diff --git a/scrapy/contrib/linkextractors/htmlparser.py b/scrapy/contrib/linkextractors/htmlparser.py index aa68ce52f96..6e3c5071a1b 100644 --- a/scrapy/contrib/linkextractors/htmlparser.py +++ b/scrapy/contrib/linkextractors/htmlparser.py @@ -62,11 +62,12 @@ def handle_starttag(self, tag, attrs): ...
Applying the same trick for `HtmlParserLinkExtractor` as done for `SgmlLinkExtractor` in https://github.com/scrapy/scrapy/pull/485
https://api.github.com/repos/scrapy/scrapy/pulls/574
2014-02-01T21:53:58Z
2014-02-03T03:09:02Z
2014-02-03T03:09:02Z
2014-06-23T20:33:38Z
543
scrapy/scrapy
34,808
Fix dom widgets not being hidden when node is not visible
diff --git a/web/scripts/domWidget.js b/web/scripts/domWidget.js index e919428a0b..bb4c892b54 100644 --- a/web/scripts/domWidget.js +++ b/web/scripts/domWidget.js @@ -177,6 +177,7 @@ LGraphCanvas.prototype.computeVisibleNodes = function () { for (const w of node.widgets) { if (w.element) { w.element.hidd...
If you quickly drag a SaveAnimatedWEBP node, with an animated image on it, off the edge of the window so it isnt visible, the image will get "stuck" at the edge
https://api.github.com/repos/comfyanonymous/ComfyUI/pulls/2330
2023-12-19T20:23:51Z
2023-12-19T21:33:21Z
2023-12-19T21:33:21Z
2023-12-19T22:01:02Z
129
comfyanonymous/ComfyUI
17,760
Closing bug in brew update formula rule (changed error message)
diff --git a/tests/rules/test_brew_update_formula.py b/tests/rules/test_brew_update_formula.py index 5cec48bdb..a35e1d9a5 100644 --- a/tests/rules/test_brew_update_formula.py +++ b/tests/rules/test_brew_update_formula.py @@ -4,7 +4,7 @@ output = ("Error: This command updates brew itself, and does not take formula"...
Brew changed the output of the error message so that the rule no longer works. They have changed the apostrophe to a backtick ``` from Use 'brew upgrade foo' instead. changed to Use `brew upgrade foo` instead. ``` Change in brew: https://github.com/Homebrew/brew/commit/2f7c3afeb8b6cb76b35860ac195e3b3...
https://api.github.com/repos/nvbn/thefuck/pulls/1314
2022-06-23T15:14:02Z
2022-06-28T16:28:38Z
2022-06-28T16:28:38Z
2022-06-29T07:53:35Z
263
nvbn/thefuck
30,832
Fix missing noexcept specifiers
diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 0c1052d1e..cf380b15d 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2235,9 +2235,9 @@ interface (widget.h) void draw(); // public API that will be forwarded to the implementation widget(int); // defined in the implementat...
According to [C.66: Make move operations noexcept](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c66-make-move-operations-noexcept), move operations should generally be `noexcept`. This must have been forgotten by authors in a few cases, and this PR adds the missing `noexcept` specifiers.
https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/2102
2023-06-23T22:47:21Z
2023-07-05T02:32:22Z
2023-07-05T02:32:22Z
2023-07-05T02:32:23Z
1,333
isocpp/CppCoreGuidelines
15,622
Create cla.yml
diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml new file mode 100644 index 00000000000..4f87c77701d --- /dev/null +++ b/.github/workflows/cla.yml @@ -0,0 +1,39 @@ +# Ultralytics YOLO 🚀, AGPL-3.0 license +# Ultralytics Contributor License Agreement (CLA) action https://docs.ultralytics.com/help/CLA +...
<!-- Thank you 🙏 for your contribution to [Ultralytics](https://ultralytics.com) 🚀! Your effort in enhancing our repositories is greatly appreciated. To streamline the process and assist us in integrating your Pull Request (PR) effectively, please follow these steps: 1. **Check for Existing Contributions**: Befor...
https://api.github.com/repos/ultralytics/yolov5/pulls/12899
2024-04-09T12:52:12Z
2024-04-09T12:52:45Z
2024-04-09T12:52:45Z
2024-04-09T12:53:03Z
499
ultralytics/yolov5
25,368
Pick of 42758 + 42769
diff --git a/ci/docker/min.build.Dockerfile b/ci/docker/min.build.Dockerfile index 77f94ded2e553..73f43d653309e 100644 --- a/ci/docker/min.build.Dockerfile +++ b/ci/docker/min.build.Dockerfile @@ -26,20 +26,21 @@ MINIMAL_INSTALL=1 PYTHON=${PYTHON_VERSION} ci/env/install-dependencies.sh rm -rf python/ray/thirdparty_fil...
Pick of https://github.com/ray-project/ray/pull/42758, which fixes CI min-build and requires to merge another pick into this branch Test: - CI
https://api.github.com/repos/ray-project/ray/pulls/42766
2024-01-27T01:34:34Z
2024-01-27T16:39:01Z
2024-01-27T16:39:01Z
2024-01-27T16:39:01Z
522
ray-project/ray
19,745
Add SSL MITM using OpenSSL
diff --git a/Methodology and Resources/Network Discovery.md b/Methodology and Resources/Network Discovery.md index c296724c2f..b76dd23eee 100644 --- a/Methodology and Resources/Network Discovery.md +++ b/Methodology and Resources/Network Discovery.md @@ -9,6 +9,7 @@ - [Responder](#responder) - [Bettercap](#betterca...
https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/617
2023-01-19T15:33:29Z
2023-01-19T16:13:45Z
2023-01-19T16:13:44Z
2023-01-19T16:13:45Z
451
swisskyrepo/PayloadsAllTheThings
8,485
Fix VRAM Issue by only loading in hypernetwork when selected in settings
diff --git a/modules/hypernetwork.py b/modules/hypernetwork.py index 7f06224285f..19f1c227066 100644 --- a/modules/hypernetwork.py +++ b/modules/hypernetwork.py @@ -40,18 +40,25 @@ def __init__(self, filename): self.layers[size] = (HypernetworkModule(size, sd[0]), HypernetworkModule(size, sd[1])) -d...
Fixes #1984 Changes hypernetwork loading to be done either at start time, or when a new hypernetwork is selected when applying settings. This eliminates the need of having multiple hypernetworks taking up valuable VRAM.
https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/2030
2022-10-09T02:52:38Z
2022-10-09T08:08:12Z
2022-10-09T08:08:12Z
2022-10-09T08:08:12Z
1,123
AUTOMATIC1111/stable-diffusion-webui
40,283
changelog: add cs_loadbalancer_rule_member
diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f1bdd453b7760..bc5b59571b735e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -138,6 +138,7 @@ New Modules: * cloudstack: cs_instancegroup * cloudstack: cs_ip_address * cloudstack: cs_loadbalancer_rule +* cloudstack: cs_loadbalancer_rule_member * cloudstack: cs_networ...
/cc @bcoca this one as well btw tests covered both modules, they must be used together...
https://api.github.com/repos/ansible/ansible/pulls/12828
2015-10-19T15:50:20Z
2015-10-19T16:05:09Z
2015-10-19T16:05:09Z
2019-04-26T16:01:07Z
125
ansible/ansible
49,676
fix: '@' symbol in url [stripchat]
diff --git a/yt_dlp/extractor/stripchat.py b/yt_dlp/extractor/stripchat.py index a7c7b064968..7214184bfce 100644 --- a/yt_dlp/extractor/stripchat.py +++ b/yt_dlp/extractor/stripchat.py @@ -10,7 +10,7 @@ class StripchatIE(InfoExtractor): - _VALID_URL = r'https?://stripchat\.com/(?P<id>[0-9A-Za-z-_]+)' + _VALI...
<details open><summary>Template</summary> <!-- OPEN is intentional --> <!-- # PLEASE FOLLOW THE GUIDE BELOW - You will be asked some questions, please read them **carefully** and answer honestly - Put an `x` into all the boxes `[ ]` relevant to your *pull request* (like [x]) - Use *Preview* tab to see how yo...
https://api.github.com/repos/yt-dlp/yt-dlp/pulls/4491
2022-07-30T07:03:44Z
2022-07-30T11:35:07Z
2022-07-30T11:35:07Z
2022-07-30T19:22:17Z
252
yt-dlp/yt-dlp
7,597
Update generate_ip_range.py
diff --git a/code/default/gae_proxy/local/generate_ip_range.py b/code/default/gae_proxy/local/generate_ip_range.py index 5ed11c2ed4..02b77fa0c1 100755 --- a/code/default/gae_proxy/local/generate_ip_range.py +++ b/code/default/gae_proxy/local/generate_ip_range.py @@ -199,7 +199,7 @@ def download_apic(filename): ret...
sepcial -> special? generage -> generate
https://api.github.com/repos/XX-net/XX-Net/pulls/5512
2017-05-14T04:23:56Z
2017-05-15T08:00:29Z
2017-05-15T08:00:29Z
2017-05-15T08:00:29Z
331
XX-net/XX-Net
17,049
# feat: polish log files for evals
diff --git a/examples/werewolf_game/evals/utils.py b/examples/werewolf_game/evals/utils.py new file mode 100644 index 000000000..d788496a3 --- /dev/null +++ b/examples/werewolf_game/evals/utils.py @@ -0,0 +1,60 @@ +''' +Filename: MetaGPT/examples/werewolf_game/evals/utils.py +Created Date: Oct 11, 2023 +Author: [Aria](...
@garylin2099
https://api.github.com/repos/geekan/MetaGPT/pulls/411
2023-10-10T12:40:13Z
2023-10-11T03:05:40Z
2023-10-11T03:05:40Z
2023-10-11T03:05:40Z
634
geekan/MetaGPT
16,982
Change 'Schema' to 'Field' in docs
diff --git a/docs/img/tutorial/body-schema/image01.png b/docs/img/tutorial/body-fields/image01.png similarity index 100% rename from docs/img/tutorial/body-schema/image01.png rename to docs/img/tutorial/body-fields/image01.png diff --git a/docs/src/body_schema/tutorial001.py b/docs/src/body_fields/tutorial001.py simila...
https://api.github.com/repos/tiangolo/fastapi/pulls/746
2019-11-28T17:41:31Z
2019-12-09T13:48:55Z
2019-12-09T13:48:55Z
2019-12-09T13:49:06Z
1,088
tiangolo/fastapi
23,181
savory-pie Restful API Framework
diff --git a/README.md b/README.md index a617d6404..5532e6742 100644 --- a/README.md +++ b/README.md @@ -418,6 +418,7 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by * [eve](https://github.com/nicolaiarocci/eve) - REST API framework powered by Flask, MongoDB and good intentions. * ...
Savory Pie is an API building library, we give you the pieces to build the API you need. Currently Django is the main target, but the only dependencies on Django are a single view and Resources and Fields that understand Django's ORM.
https://api.github.com/repos/vinta/awesome-python/pulls/184
2014-08-07T23:03:29Z
2014-08-08T01:47:18Z
2014-08-08T01:47:18Z
2014-08-08T01:47:18Z
194
vinta/awesome-python
27,164
Update `profile()` for CUDA Memory allocation
diff --git a/tutorial.ipynb b/tutorial.ipynb index 8d9c3f8b7a1..b1650627528 100644 --- a/tutorial.ipynb +++ b/tutorial.ipynb @@ -1172,11 +1172,11 @@ }, "source": [ "# Profile\n", - "from utils.torch_utils import profile \n", + "from utils.torch_utils import profile\n", "\n"...
Usage: ```python # Profile import torch from utils.torch_utils import profile model = torch.hub.load('ultralytics/yolov5', 'yolov5s', autoshape=False) # or yolov5m, yolov5l, yolov5x, custom model.train() result = profile(input=[torch.randn(b, 3, 640, 640) for b in [1, 2] + list(range(4, 33, 4))], ops=[mode...
https://api.github.com/repos/ultralytics/yolov5/pulls/4239
2021-07-30T16:13:00Z
2021-07-30T16:17:19Z
2021-07-30T16:17:19Z
2024-01-19T16:31:43Z
1,585
ultralytics/yolov5
25,668
[MRG] MNT make private the modules in sklearn.mixture
diff --git a/.gitignore b/.gitignore index 94db416d376f1..ad35460f795f8 100644 --- a/.gitignore +++ b/.gitignore @@ -106,3 +106,7 @@ sklearn/cluster/k_means_.py sklearn/cluster/mean_shift_.py sklearn/cluster/optics_.py sklearn/cluster/spectral.py + +sklearn/mixture/base.py +sklearn/mixture/gaussian_mixture.py +sklea...
Towards https://github.com/scikit-learn/scikit-learn/issues/9250
https://api.github.com/repos/scikit-learn/scikit-learn/pulls/15166
2019-10-09T16:43:33Z
2019-10-16T17:16:27Z
2019-10-16T17:16:27Z
2020-07-13T01:30:31Z
1,943
scikit-learn/scikit-learn
46,176
Update contributing guidelines for translations
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index eddc268457..69348619cf 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -45,27 +45,33 @@ If you are not familiar with pull requests, review the [pull request docs](https We'd like for the guide to be available in many languages. Here is the process for maintain...
https://api.github.com/repos/donnemartin/system-design-primer/pulls/434
2020-07-02T00:36:33Z
2020-07-02T00:48:44Z
2020-07-02T00:48:44Z
2022-03-15T12:15:56Z
1,391
donnemartin/system-design-primer
36,802
#N/A: Fix a couple of issues after new flake8 release
diff --git a/tests/rules/test_ssh_known_host.py b/tests/rules/test_ssh_known_host.py index d4632b7dc..5820e7905 100644 --- a/tests/rules/test_ssh_known_host.py +++ b/tests/rules/test_ssh_known_host.py @@ -1,6 +1,6 @@ import os import pytest -from thefuck.rules.ssh_known_hosts import match, get_new_command,\ +from the...
https://api.github.com/repos/nvbn/thefuck/pulls/1394
2023-07-30T20:27:16Z
2023-07-30T20:43:17Z
2023-07-30T20:43:17Z
2023-07-30T20:44:15Z
233
nvbn/thefuck
30,652
Autorefresh dags page for queued runs
diff --git a/airflow/www/static/js/dags.js b/airflow/www/static/js/dags.js index c6817d038e268..85b5e435e7f0c 100644 --- a/airflow/www/static/js/dags.js +++ b/airflow/www/static/js/dags.js @@ -424,7 +424,7 @@ let refreshInterval; function checkActiveRuns(json) { // filter latest dag runs and check if there are stil...
In the dags page autorefresh, we were only checking for "running" dag runs, but we should also refresh for "queued" runs. --- **^ Add meaningful description above** Read the **[Pull Request Guidelines](https://github.com/apache/airflow/blob/main/CONTRIBUTING.rst#pull-request-guidelines)** for more information. ...
https://api.github.com/repos/apache/airflow/pulls/25695
2022-08-12T15:27:30Z
2022-08-12T17:34:45Z
2022-08-12T17:34:45Z
2022-09-14T11:15:40Z
219
apache/airflow
14,212
tools/lib/auth.py: support github/apple login
diff --git a/tools/lib/auth.py b/tools/lib/auth.py index ce15be98e6c7f3..d5d2a60bb0dcf9 100755 --- a/tools/lib/auth.py +++ b/tools/lib/auth.py @@ -1,20 +1,47 @@ #!/usr/bin/env python3 +""" +Usage:: + + usage: auth.py [-h] [{google,apple,github,jwt}] [jwt] + + Login to your comma account + + positional arguments: + ...
Resolves #22738
https://api.github.com/repos/commaai/openpilot/pulls/22766
2021-11-01T13:01:21Z
2021-11-01T14:00:00Z
2021-11-01T14:00:00Z
2021-11-01T14:00:01Z
1,407
commaai/openpilot
9,057
Drop Python 3.3 Support
diff --git a/.travis.yml b/.travis.yml index 990a7f004..3bc2c4a6a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,9 +11,6 @@ matrix: - os: linux dist: trusty python: "3.4" - - os: linux - dist: trusty - python: "3.3" - os: linux dist: trusty python: "2.7" diff --git ...
It's reached end-of-life, and our dependencies have started to drop it. See https://github.com/nvbn/thefuck/pull/744#issuecomment-353244371
https://api.github.com/repos/nvbn/thefuck/pulls/747
2017-12-21T03:04:43Z
2018-01-02T01:18:06Z
2018-01-02T01:18:06Z
2018-01-02T01:22:21Z
663
nvbn/thefuck
30,806
[bandcamp] exclude merch links for user info extractor
diff --git a/yt_dlp/extractor/bandcamp.py b/yt_dlp/extractor/bandcamp.py index 745055e2d52..5edd05e6948 100644 --- a/yt_dlp/extractor/bandcamp.py +++ b/yt_dlp/extractor/bandcamp.py @@ -439,7 +439,7 @@ def _real_extract(self, url): uploader = self._match_id(url) webpage = self._download_webpage(url, up...
## Please follow the guide below - You will be asked some questions, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *pull request* (like that [x]) - Use *Preview* tab to see how your *pull request* will actually look like --- ### Before submitting a *p...
https://api.github.com/repos/yt-dlp/yt-dlp/pulls/3368
2022-04-09T16:47:21Z
2022-04-24T02:40:20Z
2022-04-24T02:40:20Z
2022-04-24T02:40:21Z
235
yt-dlp/yt-dlp
8,272
gate: add fetchLeverage and fetchLeverages
diff --git a/ts/src/gate.ts b/ts/src/gate.ts index 17ccb0d49f72..0aa5b3f4102e 100644 --- a/ts/src/gate.ts +++ b/ts/src/gate.ts @@ -5,7 +5,7 @@ import { Precise } from './base/Precise.js'; import { TICK_SIZE } from './base/functions/number.js'; import { ExchangeError, BadRequest, ArgumentsRequired, AuthenticationError...
Added fetchLeverage and fetchLeverages to gate: ``` gate fetchLeverage BTC/USDT '{"unified":true}' gate.fetchLeverage (BTC/USDT, [object Object]) 2024-03-13T05:33:11.066Z iteration 0 passed in 250 ms { info: { currency_pair: 'BTC_USDT', base_min_borrow_amount: '0.0001', quote_min_borrow_amo...
https://api.github.com/repos/ccxt/ccxt/pulls/21692
2024-03-13T07:31:46Z
2024-03-13T09:40:28Z
2024-03-13T09:40:28Z
2024-03-13T09:40:28Z
2,892
ccxt/ccxt
13,274
fix gradio again
diff --git a/webui.py b/webui.py index 0bd9792a1..e5b9c5f9e 100644 --- a/webui.py +++ b/webui.py @@ -79,31 +79,8 @@ def stop_clicked(): _js="(x) => {if(x){setTimeout(() => window.scrollTo({ top: window.scrollY + 500, behavior: 'smooth' }), 50);}else{setTimeout(() => window.scrol...
https://api.github.com/repos/lllyasviel/Fooocus/pulls/418
2023-09-18T10:19:56Z
2023-09-18T10:20:10Z
2023-09-18T10:20:10Z
2023-09-18T10:20:12Z
407
lllyasviel/Fooocus
7,165
Update Learning Rate tooltip text
diff --git a/javascript/hints.js b/javascript/hints.js index b98012f5e9b..a1fcc93b10f 100644 --- a/javascript/hints.js +++ b/javascript/hints.js @@ -91,6 +91,8 @@ titles = { "Weighted sum": "Result = A * (1 - M) + B * M", "Add difference": "Result = A + (B - C) * M", + + "Learning rate": "how fast should...
![image](https://user-images.githubusercontent.com/42512391/196564891-2cb9cf0d-2562-4778-8b88-1dd671171b8c.png) Note: In some testing that I did (via https://github.com/HunterVacui/stable-diffusion-webui/commit/9ae61f7dd80a6d381f1084a6a21ff7f66fd27cb0), most embeddings vectors seem to initialize with absolute min/ma...
https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/3106
2022-10-18T23:35:14Z
2022-10-19T18:29:32Z
2022-10-19T18:29:32Z
2022-10-19T18:31:14Z
285
AUTOMATIC1111/stable-diffusion-webui
39,656
call state.jobnext() before postproces*()
diff --git a/modules/processing.py b/modules/processing.py index 40598f5cff4..70ad1ebed0a 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -886,6 +886,8 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed: devices.torch_gc() + state.nextjob() + ...
## Description * call `state.jobnext()` before `postprocess*()` to support `job_count`, `job_no` controls in postprocessing easily. with this small fix, `state.job_count` and `state.job_no` could be easily controlled without hacky ways. * without this fix, one can control `job_count` and `job_no` in `postproce...
https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/13762
2023-10-25T19:22:46Z
2023-11-03T17:16:58Z
2023-11-03T17:16:58Z
2023-11-03T17:16:59Z
184
AUTOMATIC1111/stable-diffusion-webui
40,511
Linode Dynamic Inventory: Add public IP's as hostvars
diff --git a/contrib/inventory/linode.py b/contrib/inventory/linode.py index f2b61b70756d78..0aa7098b316095 100755 --- a/contrib/inventory/linode.py +++ b/contrib/inventory/linode.py @@ -280,6 +280,11 @@ def get_host_info(self): node_vars["datacenter_city"] = self.get_datacenter_city(node) node_vars["...
When the linode inventory is generated the linode label is used as the inventory host. If the label isn't a FQDN ansible can't connect. This will set the hostvars for the ansible_ssh_host to the linodes public IP.
https://api.github.com/repos/ansible/ansible/pulls/14428
2016-02-10T23:58:35Z
2016-02-12T03:46:39Z
2016-02-12T03:46:39Z
2019-04-26T16:34:31Z
211
ansible/ansible
48,820
Bybit :: fetchOrderBook update
diff --git a/js/bybit.js b/js/bybit.js index 898ee92efffb..16aa08e2837d 100644 --- a/js/bybit.js +++ b/js/bybit.js @@ -725,7 +725,7 @@ module.exports = class bybit extends Exchange { const market = markets[i]; const id = this.safeString (market, 'name'); const baseId = this.safeSt...
- updated fetchOrderBook to handle all available market types
https://api.github.com/repos/ccxt/ccxt/pulls/13146
2022-05-06T14:26:15Z
2022-05-10T20:02:40Z
2022-05-10T20:02:40Z
2022-05-10T20:02:40Z
1,174
ccxt/ccxt
13,251
Fixed #34266 -- Added ClosestPoint GIS database functions.
diff --git a/django/contrib/gis/db/backends/base/operations.py b/django/contrib/gis/db/backends/base/operations.py index 287841b29e241..fafdf60743008 100644 --- a/django/contrib/gis/db/backends/base/operations.py +++ b/django/contrib/gis/db/backends/base/operations.py @@ -42,6 +42,7 @@ def select_extent(self): ...
I'd like to suggest adding this function to the bunch to encourage people to prefer its use in a number of situations over [cumbersome solutions](https://niccolomineo.com/articles/marker-center-complex-line-geodjango/).
https://api.github.com/repos/django/django/pulls/16449
2023-01-13T17:03:34Z
2023-01-20T07:45:12Z
2023-01-20T07:45:12Z
2023-02-03T09:34:21Z
1,819
django/django
50,911
Fix typo in airflow/utils/dag_processing.py
diff --git a/airflow/utils/dag_processing.py b/airflow/utils/dag_processing.py index 6581164a06590..0d6110798af15 100644 --- a/airflow/utils/dag_processing.py +++ b/airflow/utils/dag_processing.py @@ -112,7 +112,7 @@ def result(self) -> Optional[Tuple[int, int]]: """ A list of simple dags found, and t...
`availlablle` -> `available` <!-- Thank you for contributing! Please make sure that your code changes are covered with tests. And in case of new features or big changes remember to adjust the documentation. Feel free to ping committers for the review! In case of existing issue, reference it using one of the...
https://api.github.com/repos/apache/airflow/pulls/11445
2020-10-11T21:36:17Z
2020-10-11T21:43:30Z
2020-10-11T21:43:30Z
2020-10-11T21:43:33Z
165
apache/airflow
14,509
Add librosa
diff --git a/README.md b/README.md index db18171c8..10f193742 100644 --- a/README.md +++ b/README.md @@ -151,11 +151,13 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Audio * [audioread](https://github.com/beetbox/audioread) - Cross-library (GStreamer + Core Audio + MAD + FFmpeg) audio dec...
## What is this Python project? librosa is Python library for audio and music analysis ## What's the difference between this Python project and similar ones? - It provides the building blocks necessary to create music information retrieval systems. -- Anyone who agrees with this pull request could submit an *A...
https://api.github.com/repos/vinta/awesome-python/pulls/1568
2020-07-06T09:48:43Z
2020-07-07T04:05:36Z
2020-07-07T04:05:36Z
2020-07-07T04:05:36Z
382
vinta/awesome-python
27,322
gh-105908: fix `barry_as_FLUFL` future import
diff --git a/Lib/test/test_future.py b/Lib/test/test_future.py index b8b591a1bcf2c6..4730bfafbd9cfe 100644 --- a/Lib/test/test_future.py +++ b/Lib/test/test_future.py @@ -4,6 +4,7 @@ import ast import unittest from test.support import import_helper +from test.support.script_helper import spawn_python, kill_python f...
<!-- Thanks for your contribution! Please read this comment in its entirety. It's quite important. # Pull Request title It should be in the following format: ``` gh-NNNNN: Summary of the changes made ``` Where: gh-NNNNN refers to the GitHub issue number. Most PRs will require an issue number. Trivial...
https://api.github.com/repos/python/cpython/pulls/105909
2023-06-19T10:45:47Z
2023-06-19T21:50:57Z
2023-06-19T21:50:57Z
2023-06-20T02:39:34Z
932
python/cpython
4,792
Update Windows -Privilege Escalation - Typo Fix
diff --git a/Methodology and Resources/Windows - Privilege Escalation.md b/Methodology and Resources/Windows - Privilege Escalation.md index a58d456716..7ee03864c0 100644 --- a/Methodology and Resources/Windows - Privilege Escalation.md +++ b/Methodology and Resources/Windows - Privilege Escalation.md @@ -301,7 +301,...
# Line 304 - Typo: `...\CurentControlSet\..` -> `...\CurrentControlSet\..`
https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/585
2022-10-22T13:27:48Z
2022-10-22T14:04:24Z
2022-10-22T14:04:24Z
2022-10-24T18:06:01Z
567
swisskyrepo/PayloadsAllTheThings
8,829
[Streaming]Remove custom resource from streaming
diff --git a/java/BUILD.bazel b/java/BUILD.bazel index d01a932542a9b..2d98abb9402ba 100644 --- a/java/BUILD.bazel +++ b/java/BUILD.bazel @@ -294,6 +294,8 @@ java_binary( "//java:io_ray_ray_api", "//java:io_ray_ray_runtime", "//java:io_ray_ray_serve", + "//streaming/java:io_ray_ray_stre...
<!-- Thank you for your contribution! Please review https://github.com/ray-project/ray/blob/master/CONTRIBUTING.rst before opening a pull request. --> <!-- Please add a reviewer to the assignee section when you create a PR. If you don't have the access to it, we will shortly find a reviewer and assign them to your P...
https://api.github.com/repos/ray-project/ray/pulls/18490
2021-09-10T10:00:28Z
2021-09-12T19:20:59Z
2021-09-12T19:20:59Z
2021-09-13T04:56:16Z
1,973
ray-project/ray
18,927
Documentation: Add single domain option for OVH DNS creds
diff --git a/certbot-dns-ovh/certbot_dns_ovh/__init__.py b/certbot-dns-ovh/certbot_dns_ovh/__init__.py index 6a079e59fd8..42eaed9a0b5 100644 --- a/certbot-dns-ovh/certbot_dns_ovh/__init__.py +++ b/certbot-dns-ovh/certbot_dns_ovh/__init__.py @@ -25,14 +25,22 @@ ----------- Use of this plugin requires a configuration...
## Changes - Basic documentation update as mentioned could be useful in #9109. ## Pull Request Checklist - [x] The Certbot team has recently expressed interest in reviewing a PR for this. If not, this PR may be closed due our limited resources and need to prioritize how we spend them. - [x] If the change being ...
https://api.github.com/repos/certbot/certbot/pulls/9419
2022-09-29T16:43:47Z
2022-09-30T02:06:41Z
2022-09-30T02:06:41Z
2022-09-30T02:06:41Z
352
certbot/certbot
1,112
Fix __len__ in CIFAR10Sequence example in Python2
diff --git a/keras/utils/data_utils.py b/keras/utils/data_utils.py index c5a6d79359b..4398c1d20d8 100644 --- a/keras/utils/data_utils.py +++ b/keras/utils/data_utils.py @@ -315,7 +315,6 @@ class Sequence(object): from skimage.io import imread from skimage.transform import resize import numpy ...
Fix PR https://github.com/fchollet/keras/pull/8275 for Python2.
https://api.github.com/repos/keras-team/keras/pulls/8284
2017-10-28T18:39:10Z
2018-01-20T00:14:48Z
2018-01-20T00:14:48Z
2018-01-20T00:28:10Z
231
keras-team/keras
46,997
Fix #815
diff --git a/flask/app.py b/flask/app.py index 1d2e356c50..a837c030b6 100644 --- a/flask/app.py +++ b/flask/app.py @@ -949,6 +949,9 @@ def index(): # a tuple of only `GET` as default. if methods is None: methods = getattr(view_func, 'methods', None) or ('GET',) + if isinstance(meth...
https://api.github.com/repos/pallets/flask/pulls/816
2013-07-30T20:38:16Z
2013-07-31T14:44:45Z
2013-07-31T14:44:45Z
2020-11-14T05:42:39Z
330
pallets/flask
20,246
Allow set_page_config after callbacks
diff --git a/e2e/scripts/st_set_page_config.py b/e2e/scripts/st_set_page_config.py index e7c992df9681..c08122f76c9a 100644 --- a/e2e/scripts/st_set_page_config.py +++ b/e2e/scripts/st_set_page_config.py @@ -22,3 +22,41 @@ ) st.sidebar.button("Sidebar!") st.markdown("Main!") + + +def show_balloons(): + st.balloons...
fixes #3410 We only allow set_page_config to be called once per script run, and we do not allow any other st calls to execute prior to it. Callbacks changed things, and st calls are now allowed to run before set_page_config. This change ensures the following: - callbacks can call st commands without throwing an...
https://api.github.com/repos/streamlit/streamlit/pulls/3550
2021-07-14T18:42:08Z
2021-07-14T22:14:44Z
2021-07-14T22:14:44Z
2021-07-24T00:37:27Z
2,106
streamlit/streamlit
22,018
Test on Python 3.11
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 159ce13b3fff..1069c68d215f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: 3...
### Describe your change: Problem deps are qiskit, statsmodels, and tensorflow: * https://github.com/Qiskit/qiskit-terra/issues/9028 * ~https://github.com/symengine/symengine.py/issues/422~ * https://github.com/statsmodels/statsmodels/issues/8287 * https://github.com/tensorflow/tensorflow/releases * [ ] T...
https://api.github.com/repos/TheAlgorithms/Python/pulls/6591
2022-10-03T07:32:25Z
2022-10-31T13:50:03Z
2022-10-31T13:50:03Z
2022-11-01T17:58:25Z
936
TheAlgorithms/Python
29,680
gh-97928: Partially restore the behavior of tkinter.Text.count() by default
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index c25d41351c2f3c..6531d108d5ffe0 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -430,6 +430,12 @@ tkinter a dict instead of a tuple. (Contributed by Serhiy Storchaka in :gh:`43457`.) +* Add new optional keyword-only parameter *ret...
By default, it preserves an inconsistent behavior of older Python versions: packs the count into a 1-tuple if only one or none options are specified (including 'update'). Except that setting wantobjects to 0 no longer affects the result. Add a new parameter return_ints: specifying return_ints=True makes Text.count(...
https://api.github.com/repos/python/cpython/pulls/115031
2024-02-05T14:53:19Z
2024-02-11T10:43:14Z
2024-02-11T10:43:14Z
2024-02-11T10:43:17Z
2,799
python/cpython
4,367
removing redundant test
diff --git a/tests/test_requests.py b/tests/test_requests.py index a7d3a75b18..7361627279 100755 --- a/tests/test_requests.py +++ b/tests/test_requests.py @@ -221,10 +221,6 @@ def test_http_303_doesnt_change_head_to_get(self, httpbin): assert r.history[0].status_code == 303 assert r.history[0].is_redi...
I was writing up a new test and found this comment block. Looks like it was commented out as part of a cleanup effort, but never removed. Test functionality is fulfilled by [this test](https://github.com/kennethreitz/requests/blob/master/tests/test_requests.py#L196).
https://api.github.com/repos/psf/requests/pulls/3415
2016-07-15T03:57:01Z
2016-07-15T07:07:44Z
2016-07-15T07:07:44Z
2021-09-08T03:00:50Z
176
psf/requests
32,852
Alphabetize additional sections
diff --git a/README.md b/README.md index 0a5c6b83..4b5a2087 100644 --- a/README.md +++ b/README.md @@ -144,53 +144,54 @@ For a list of free machine learning books available for download, go [here](http <a name="cpp-cv" /> #### Computer Vision -* [OpenCV](http://opencv.org) - OpenCV has C++, C, Python, Java and MATL...
Alphabetized c++ sections.
https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/328
2016-10-31T08:25:58Z
2016-11-13T17:45:12Z
2016-11-13T17:45:12Z
2016-11-13T17:45:12Z
2,735
josephmisiti/awesome-machine-learning
52,181
Do not send Proxy-Agent in CONNECT responses
diff --git a/libmproxy/models/http.py b/libmproxy/models/http.py index 3c024e764b..a2a345d709 100644 --- a/libmproxy/models/http.py +++ b/libmproxy/models/http.py @@ -456,14 +456,13 @@ def make_connect_request(address): def make_connect_response(http_version): - headers = Headers( - Proxy_Agent=version.N...
Sending any headers at all in response to a CONNECT request breaks proxying Android emulators on all non-80 ports. Issue: #783
https://api.github.com/repos/mitmproxy/mitmproxy/pulls/932
2016-02-14T00:21:57Z
2016-02-14T00:27:51Z
2016-02-14T00:27:51Z
2016-02-14T00:52:53Z
163
mitmproxy/mitmproxy
27,684
add colbert import
diff --git a/docs/examples/node_postprocessor/ColbertRerank.ipynb b/docs/examples/node_postprocessor/ColbertRerank.ipynb index ef067ae7f151a..11c346a42c2e7 100644 --- a/docs/examples/node_postprocessor/ColbertRerank.ipynb +++ b/docs/examples/node_postprocessor/ColbertRerank.ipynb @@ -109,6 +109,8 @@ "metadata": {},...
# Description Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. Fixes # (issue) ## Type of Change Please delete options that are not relevant. - [ ] Bug fix (non-breaking change wh...
https://api.github.com/repos/run-llama/llama_index/pulls/11309
2024-02-23T04:54:34Z
2024-02-23T05:00:16Z
2024-02-23T05:00:16Z
2024-02-23T05:00:16Z
185
run-llama/llama_index
6,592
🌐 Update Chinese translation for `docs/zh/docs/tutorial/metadata.md`
diff --git a/docs/zh/docs/tutorial/metadata.md b/docs/zh/docs/tutorial/metadata.md index 3e669bc72fa24..09b106273c58c 100644 --- a/docs/zh/docs/tutorial/metadata.md +++ b/docs/zh/docs/tutorial/metadata.md @@ -1,40 +1,35 @@ # 元数据和文档 URL +你可以在 FastAPI 应用程序中自定义多个元数据配置。 -你可以在 **FastAPI** 应用中自定义几个元数据配置。 +## API 元数据 ...
https://api.github.com/repos/tiangolo/fastapi/pulls/11286
2024-03-13T16:20:21Z
2024-03-14T16:41:51Z
2024-03-14T16:41:51Z
2024-03-14T16:42:00Z
1,257
tiangolo/fastapi
23,447
Fixed #31117 -- Isolated backends.base.test_creation.TestDbCreationTests
diff --git a/tests/backends/base/test_creation.py b/tests/backends/base/test_creation.py index 340eaafc89591..b91466911a1b1 100644 --- a/tests/backends/base/test_creation.py +++ b/tests/backends/base/test_creation.py @@ -8,19 +8,21 @@ from django.test import SimpleTestCase -class TestDbSignatureTests(SimpleTestCas...
(Commit replaced with different fix, see comments below) ~~This lets TestDbCreationTests properly clean up by not only calling `create_test_db`, but also `destroy_test_db`.~~ ~~Since we cannot call `destroy_test_db` on the 'default' database, which is used by other tests, and since calling `create_test_db` on a d...
https://api.github.com/repos/django/django/pulls/12247
2019-12-23T22:33:11Z
2020-01-20T10:22:49Z
2020-01-20T10:22:49Z
2020-01-20T10:22:49Z
965
django/django
51,611
fix error in deleting lambda configuration keys
diff --git a/localstack/services/awslambda/lambda_api.py b/localstack/services/awslambda/lambda_api.py index 96b1680438ce5..3eb4fec7bd6ae 100644 --- a/localstack/services/awslambda/lambda_api.py +++ b/localstack/services/awslambda/lambda_api.py @@ -1066,8 +1066,8 @@ def lookup_function(function, region, request_url): ...
Addresses #6464 When using only community code, but setting the package type to image (which should work until it comes to invocation), the "Layer" key is not available in the "Configuration" dict, when running get-function. This leads to a 500 error when running get-function. This PR fixes this by using `pop` i...
https://api.github.com/repos/localstack/localstack/pulls/6627
2022-08-09T13:20:54Z
2022-08-10T12:03:18Z
2022-08-10T12:03:18Z
2022-08-10T12:03:36Z
197
localstack/localstack
28,704
Prep 0.34.1
diff --git a/.travis.yml b/.travis.yml index b23164a1967..e1859cc0ecf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -60,7 +60,12 @@ matrix: env: TOXENV=mypy <<: *not-on-master - python: "2.7" - env: TOXENV='py27-{acme,apache,certbot,dns,nginx,postfix}-oldest' + env: TOXENV='py27-{acme,apach...
This is a little unconventional, but for the sake of saving time, I've cherry picked the three changes we need for the point release into this branch. This PR should be merged and not squashed.
https://api.github.com/repos/certbot/certbot/pulls/7020
2019-05-02T21:33:16Z
2019-05-02T21:46:43Z
2019-05-02T21:46:43Z
2019-05-02T21:46:46Z
1,588
certbot/certbot
2,388
Use original flow host instead of IP when exporting to curl/httpie.
diff --git a/CHANGELOG.md b/CHANGELOG.md index 633dd26707..516d1b2f06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -54,6 +54,8 @@ If you depend on these features, please raise your voice in * Fix IDNA host 'Bad HTTP request line' error (@grahamrobbins) * Pressing `?` now exits console help view (@abitrolly) * `--...
#### Description Unless this is done, the SNI server name will not be sent, often making the curl/httpie command have different behaviour than the original request (most often in the form of failing to establish a TLS connection). With this change, we always use the original host, fixing this failure. However...
https://api.github.com/repos/mitmproxy/mitmproxy/pulls/4307
2020-11-23T10:22:22Z
2021-02-09T18:44:47Z
2021-02-09T18:44:46Z
2021-02-09T18:44:47Z
1,957
mitmproxy/mitmproxy
28,308
fix(Exchange.php): filterByLimit fix [ci deploy]
diff --git a/ts/src/base/Exchange.ts b/ts/src/base/Exchange.ts index 624f55e16582..91e0738c32ad 100644 --- a/ts/src/base/Exchange.ts +++ b/ts/src/base/Exchange.ts @@ -1489,7 +1489,7 @@ export default class Exchange { } } if (tail) { - return result.slice (-limit); + ...
- fixes https://github.com/ccxt/ccxt/issues/18506 DEMO ``` ph binance watchTrades "BTC/USDT" --sandbox PHP v8.2.1 CCXT version :4.0.16 binance->watchTrades(BTC/USDT) PHP Deprecated: Creation of dynamic property ccxt\pro\Client::$throttle is deprecated in /Users/cjg/Git/ccxt10/ccxt/php/pro/Client.php on lin...
https://api.github.com/repos/ccxt/ccxt/pulls/18515
2023-07-10T13:51:29Z
2023-07-10T15:30:09Z
2023-07-10T15:30:09Z
2023-07-10T15:30:09Z
185
ccxt/ccxt
13,039
Fix off-by-one bug in predict/evaluate progress bar
diff --git a/keras/engine/training.py b/keras/engine/training.py index 34d4f84eddb..ad373cc01c7 100644 --- a/keras/engine/training.py +++ b/keras/engine/training.py @@ -1249,7 +1249,7 @@ def _predict_loop(self, f, ins, batch_size=32, verbose=0, steps=None): for i, batch_out in enumerate(batch_outs): ...
Fix off-by-one bug in predict/evaluate progress bar ``` Before: 0/1 [..............................] - ETA: 0s 0/1 [..............................] - ETA: 0s After: 1/1 [==============================] - ETA: 0s 1/1 [==============================] - ETA: 0s ``` Also sync (make identical) portions of the...
https://api.github.com/repos/keras-team/keras/pulls/8071
2017-10-05T22:55:41Z
2017-10-06T17:22:14Z
2017-10-06T17:22:14Z
2017-10-06T17:28:49Z
477
keras-team/keras
47,051
Replace map function with list comprehension
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..fd20fddf87 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ + +*.pyc diff --git a/4 Digit Number Combinations.py b/4 Digit Number Combinations.py deleted file mode 100644 index b92c525955..0000000000 --- a/4 Digit Number Combinations.py +++ /dev...
The code is more clear writing in list comprehension
https://api.github.com/repos/geekcomputers/Python/pulls/292
2018-01-28T22:22:41Z
2018-02-05T08:43:41Z
2018-02-05T08:43:41Z
2018-02-05T08:43:41Z
436
geekcomputers/Python
31,469
updata di example and change the location of the .ipynb locations
diff --git a/examples/di/data_visualization.py b/examples/di/data_visualization.py index 1a21ab7cb..184e04f26 100644 --- a/examples/di/data_visualization.py +++ b/examples/di/data_visualization.py @@ -1,14 +1,17 @@ import asyncio +from metagpt.logs import logger from metagpt.roles.di.data_interpreter import DataInt...
**Features** <!-- Clear and direct description of the submit features. --> <!-- If it's a bug fix, please also paste the issue link. --> - xx - yy **Feature Docs** <!-- The RFC, tutorial, or use cases about the feature if it's a pretty big update. If not, there is no need to fill. --> **Influence** <!...
https://api.github.com/repos/geekan/MetaGPT/pulls/1090
2024-03-24T07:06:08Z
2024-03-25T04:07:06Z
2024-03-25T04:07:06Z
2024-03-25T04:07:06Z
376
geekan/MetaGPT
16,969
Fixed #29350 -- Allowed SQLite pk introspection to work with formats besides double quotes.
diff --git a/django/db/backends/sqlite3/introspection.py b/django/db/backends/sqlite3/introspection.py index bb78e2533efff..72e3d94955721 100644 --- a/django/db/backends/sqlite3/introspection.py +++ b/django/db/backends/sqlite3/introspection.py @@ -192,9 +192,9 @@ def get_primary_key_column(self, cursor, table_name): ...
The `get_primary_key_column()` method in the `sqlite3` backend only expects a field with quotation. The solution is to make the capture group focus on the first word, regardless of whether or not it has quotation. There are no existing test cases, so I've added those as well. - Fix get_primary_key_column() method...
https://api.github.com/repos/django/django/pulls/9899
2018-04-23T22:58:34Z
2018-04-28T10:01:45Z
2018-04-28T10:01:45Z
2018-05-08T02:38:46Z
574
django/django
51,515
Change docstring for generate_random_map in frozen_lake env
diff --git a/gym/envs/toy_text/frozen_lake.py b/gym/envs/toy_text/frozen_lake.py index fb78ee438fb..7623a7816fc 100644 --- a/gym/envs/toy_text/frozen_lake.py +++ b/gym/envs/toy_text/frozen_lake.py @@ -31,10 +31,12 @@ ], } -# Generates a random valid map (one that has a path from start to goal) -# @params size, ...
It seems there's no other docstring using Epytext style, so I changed it to reST style (which is used a few times) for a bit more consistency.
https://api.github.com/repos/openai/gym/pulls/1390
2019-03-16T11:39:17Z
2019-03-16T20:01:50Z
2019-03-16T20:01:50Z
2019-03-16T20:01:50Z
221
openai/gym
5,342
[generic] Support mpd formats without file extension
diff --git a/yt_dlp/extractor/generic.py b/yt_dlp/extractor/generic.py index 9c7fa4a2175..ae0ebb14ad5 100644 --- a/yt_dlp/extractor/generic.py +++ b/yt_dlp/extractor/generic.py @@ -2601,6 +2601,8 @@ def _real_extract(self, url): subtitles = {} if format_id.endswith('mpegurl'): ...
## Please follow the guide below - You will be asked some questions, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *pull request* (like that [x]) - Use *Preview* tab to see how your *pull request* will actually look like --- ### Before submitting a *p...
https://api.github.com/repos/yt-dlp/yt-dlp/pulls/1806
2021-11-26T17:22:09Z
2021-11-27T05:16:00Z
2021-11-27T05:16:00Z
2021-11-27T05:16:00Z
198
yt-dlp/yt-dlp
8,198
Switching the deploy workflow to use environment secrets
diff --git a/.github/workflows/deploy-to-node.yaml b/.github/workflows/deploy-to-node.yaml index 88aa72f2c9..f107d0afb4 100644 --- a/.github/workflows/deploy-to-node.yaml +++ b/.github/workflows/deploy-to-node.yaml @@ -32,7 +32,7 @@ jobs: WEB_EMAIL_SERVER_PASSWORD: ${{ secrets.DEV_WEB_EMAIL_SERVER_PASSWORD }} ...
Fixes #755 This migrates the deployment workflows away from repository secrets to environment secrets.
https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/757
2023-01-16T05:34:04Z
2023-01-16T23:59:55Z
2023-01-16T23:59:55Z
2023-01-16T23:59:56Z
199
LAION-AI/Open-Assistant
37,171
Use certificate in NS1 plugin flag's help
diff --git a/certbot/cli.py b/certbot/cli.py index 1023d9aca36..78e4032f13f 100644 --- a/certbot/cli.py +++ b/certbot/cli.py @@ -1247,7 +1247,8 @@ def _plugins_parsing(helpful, plugins): help=('Obtain certificates using a DNS TXT record (if you are ' 'using Google Cloud DNS).')) ...
https://api.github.com/repos/certbot/certbot/pulls/4783
2017-06-06T00:41:48Z
2017-06-06T01:21:47Z
2017-06-06T01:21:47Z
2017-06-06T01:21:49Z
196
certbot/certbot
1,542
defaultheaders multi spider support removed
diff --git a/scrapy/contrib/downloadermiddleware/defaultheaders.py b/scrapy/contrib/downloadermiddleware/defaultheaders.py index 57eed1a0aeb..f1d2bd6311f 100644 --- a/scrapy/contrib/downloadermiddleware/defaultheaders.py +++ b/scrapy/contrib/downloadermiddleware/defaultheaders.py @@ -3,22 +3,17 @@ See documentation ...
https://api.github.com/repos/scrapy/scrapy/pulls/423
2013-10-09T15:50:51Z
2013-10-09T16:03:33Z
2013-10-09T16:03:33Z
2014-06-12T16:08:01Z
283
scrapy/scrapy
34,430
[ASF] Support Migration
diff --git a/localstack/aws/api/support/__init__.py b/localstack/aws/api/support/__init__.py new file mode 100644 index 0000000000000..804ab83538f82 --- /dev/null +++ b/localstack/aws/api/support/__init__.py @@ -0,0 +1,504 @@ +import sys +from typing import List, Optional + +if sys.version_info >= (3, 8): + from typ...
https://api.github.com/repos/localstack/localstack/pulls/5535
2022-02-21T07:42:43Z
2022-02-21T17:40:49Z
2022-02-21T17:40:49Z
2022-02-21T21:30:58Z
3,794
localstack/localstack
28,891
bpo-18799: Resurrect test_404.
diff --git a/Lib/test/test_xmlrpc.py b/Lib/test/test_xmlrpc.py index 5f780d88002e9e..32263f7f0b3b06 100644 --- a/Lib/test/test_xmlrpc.py +++ b/Lib/test/test_xmlrpc.py @@ -818,11 +818,10 @@ def test_nonascii_methodname(self): # protocol error; provide additional information in test output ...
<!-- Thanks for your contribution! Please read this comment in its entirety. It's quite important. # Pull Request title It should be in the following format: ``` bpo-NNNN: Summary of the changes made ``` Where: bpo-NNNN refers to the issue number in the https://bugs.python.org. Most PRs will require ...
https://api.github.com/repos/python/cpython/pulls/11196
2018-12-17T13:41:16Z
2018-12-17T14:16:25Z
2018-12-17T14:16:25Z
2018-12-19T09:30:47Z
226
python/cpython
4,091
[modeling_utils] torch_dtype/auto floating dtype fixes
diff --git a/src/transformers/modeling_utils.py b/src/transformers/modeling_utils.py index e18854d205c5d..2d1450bd06ace 100644 --- a/src/transformers/modeling_utils.py +++ b/src/transformers/modeling_utils.py @@ -132,7 +132,10 @@ def find_tensor_attributes(module: nn.Module) -> List[Tuple[str, Tensor]]: return...
As reported in https://github.com/huggingface/transformers/issues/17583 not all model's have their first param of floating dtype, which lead to failures like: ``` $ python -c 'from transformers import AutoModel; AutoModel.from_pretrained("hf-internal-testing/tiny-bert-for-token-classification", torch_dtype="auto")'...
https://api.github.com/repos/huggingface/transformers/pulls/17614
2022-06-08T17:45:20Z
2022-06-09T17:18:26Z
2022-06-09T17:18:26Z
2022-06-09T17:27:53Z
1,261
huggingface/transformers
12,669
feat(ui): Add file icons to release detail changed files
diff --git a/docs-ui/components/fileIcon.stories.js b/docs-ui/components/fileIcon.stories.js new file mode 100644 index 0000000000000..1d1fa674c6865 --- /dev/null +++ b/docs-ui/components/fileIcon.stories.js @@ -0,0 +1,20 @@ +import React from 'react'; +import {storiesOf} from '@storybook/react'; +import {withInfo} fro...
Before: ![image](https://user-images.githubusercontent.com/9060071/83862781-b4119800-a722-11ea-9f46-0f8769ebc406.png) After: ![image](https://user-images.githubusercontent.com/9060071/83862811-bd9b0000-a722-11ea-8d2f-bc392d9c5706.png)
https://api.github.com/repos/getsentry/sentry/pulls/19202
2020-06-05T09:50:59Z
2020-06-09T10:21:39Z
2020-06-09T10:21:39Z
2020-12-18T19:51:04Z
1,141
getsentry/sentry
44,687
Added Pytests for Decission Tree mean_squared_error method
diff --git a/machine_learning/decision_tree.py b/machine_learning/decision_tree.py index 4f7a4d12966e..14c02b64df0c 100644 --- a/machine_learning/decision_tree.py +++ b/machine_learning/decision_tree.py @@ -21,6 +21,14 @@ def mean_squared_error(self, labels, prediction): @param labels: a one dimensional numpy ...
Modified the mean_squared_error to be a static method Created the Test_Decision_Tree class Consists of two methods 1. **helper_mean_squared_error_test**: This method calculates the mean squared error manually without using numpy. Instead, a for loop is used for the same. 2. **test_one_mean_squared_error**: This m...
https://api.github.com/repos/TheAlgorithms/Python/pulls/1374
2019-10-15T20:17:13Z
2019-10-18T18:23:38Z
2019-10-18T18:23:38Z
2019-10-18T18:32:37Z
514
TheAlgorithms/Python
30,392
create env INIT_SCRIPTS_PATH for specify path for init files in docker
diff --git a/README.md b/README.md index 2b62693dd4dc1..e9a9f47d93a12 100644 --- a/README.md +++ b/README.md @@ -217,6 +217,7 @@ You can pass the following environment variables to LocalStack: * `EXTRA_CORS_EXPOSE_HEADERS`: Comma-separated list of header names to be be added to `Access-Control-Expose-Headers` CORS hea...
I am proposing to create a variable `INIT_SCRIPTS_PATH` to define the path of the initialization files. This solves a problem for me where pipelines mount the volume with the files from the repository, however I must not manipulate these files, but I can reference the existing path.
https://api.github.com/repos/localstack/localstack/pulls/3052
2020-09-30T20:58:41Z
2020-10-05T18:22:55Z
2020-10-05T18:22:55Z
2020-10-05T18:22:55Z
694
localstack/localstack
28,407
Add default args and type hints for Project Euler problem 7
diff --git a/project_euler/problem_07/sol1.py b/project_euler/problem_07/sol1.py index 373915f886e1..727d7fb7fac6 100644 --- a/project_euler/problem_07/sol1.py +++ b/project_euler/problem_07/sol1.py @@ -1,4 +1,6 @@ """ +Problem 7: https://projecteuler.net/problem=7 + By listing the first six prime numbers: 2, ...
Continuing #2786 - Add default argument values - Add type hints - Change one letter variable names to a more descriptive one - Add doctest for `solution()` ### **Describe your change:** * [x] Fix a bug or typo in an existing algorithm? ### **Checklist:** * [x] I have read [CONTRIBUTING.md](https://gith...
https://api.github.com/repos/TheAlgorithms/Python/pulls/2973
2020-10-07T11:10:36Z
2020-10-08T05:57:48Z
2020-10-08T05:57:48Z
2020-10-08T06:02:57Z
1,572
TheAlgorithms/Python
29,980
Removed unsused variable and did minor PEP8 touch ups
diff --git a/QuadraticCalc.py b/QuadraticCalc.py index c75dceb1bd..348195c8f8 100644 --- a/QuadraticCalc.py +++ b/QuadraticCalc.py @@ -3,8 +3,8 @@ # Simple script to calculate the quadratic formula of a sequence of numbers and # recognises when the sequence isn't quadratic -def findLinear(numbers): ##find a & b...
https://api.github.com/repos/geekcomputers/Python/pulls/647
2019-10-24T11:15:04Z
2019-11-09T14:31:21Z
2019-11-09T14:31:21Z
2019-11-09T14:31:21Z
304
geekcomputers/Python
31,572
[doc] update slack link
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index b310fcfefc15..436bdf887c69 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,7 +1,7 @@ blank_issues_enabled: true contact_links: - name: ❓ Simple question - Slack Chat - url: https...
## 📌 Checklist before creating the PR - [ ] I have created an issue for this PR for traceability - [ ] The title follows the standard format: `[doc/gemini/tensor/...]: A concise description` - [ ] I have added relevant tags if possible for us to better distinguish different PRs ## 🚨 Issue number > Link t...
https://api.github.com/repos/hpcaitech/ColossalAI/pulls/4823
2023-09-27T09:32:31Z
2023-09-27T09:37:39Z
2023-09-27T09:37:39Z
2023-09-27T09:37:44Z
2,460
hpcaitech/ColossalAI
11,295
Remove duplicate, failing oldest tests.
diff --git a/.travis.yml b/.travis.yml index baf3856042c..94eaf693e8b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -55,6 +55,10 @@ matrix: env: TOXENV=mypy <<: *not-on-master - python: "2.7" + # Ubuntu Trusty or older must be used because the oldest version of + # cryptography we support c...
Nightly tests failed last night at https://travis-ci.com/certbot/certbot/builds/120816454. The cause was the oldest the version of Ubuntu used in the tests suddenly changed from Trusty to Xenial. You can see Xenial being used in the failing test at https://travis-ci.com/certbot/certbot/jobs/219873088#L9 and Trusty ...
https://api.github.com/repos/certbot/certbot/pulls/7272
2019-07-26T18:21:14Z
2019-07-26T20:37:17Z
2019-07-26T20:37:16Z
2019-07-26T20:37:19Z
304
certbot/certbot
1,923
Support kwargs in gym.make and export register
diff --git a/gym/__init__.py b/gym/__init__.py index ec6623a3f3d..4ee968c1052 100644 --- a/gym/__init__.py +++ b/gym/__init__.py @@ -8,7 +8,7 @@ from gym.version import VERSION as __version__ from gym.core import Env, GoalEnv, Space, Wrapper, ObservationWrapper, ActionWrapper, RewardWrapper -from gym.envs import ma...
We avoided adding kwargs for a long time in order to encourage people to statically register their environment definitions. However, over time we've found a few important use-cases for kwargs, such as: - Runtime-specific objects, such as which GPU to run the environment on - Parametrized environments, which can hav...
https://api.github.com/repos/openai/gym/pulls/1301
2019-01-29T18:41:23Z
2019-01-29T21:37:44Z
2019-01-29T21:37:44Z
2019-01-29T21:37:44Z
1,106
openai/gym
5,094
Improve issue closing behavior
diff --git a/.github/stale.yml b/.github/stale.yml index 9c095ebd640..2e4106314c7 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -5,7 +5,8 @@ daysUntilStale: 365 # Number of days of inactivity before an Issue or Pull Request with the stale label is closed. # Set to false to disable. If disabled, issues s...
https://api.github.com/repos/certbot/certbot/pulls/7178
2019-06-24T23:22:23Z
2019-06-24T23:39:46Z
2019-06-24T23:39:46Z
2019-06-24T23:39:48Z
306
certbot/certbot
1,967
Improve Docs
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 09827eb16a..8201658ce0 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,4 +1,4 @@ -# Contributor Covenant Code of Conduct +# Contributor Covenant Code of Conduct Easy to understand ## Our Pledge diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md ...
https://api.github.com/repos/geekcomputers/Python/pulls/942
2020-10-02T07:45:08Z
2023-07-29T09:06:57Z
2023-07-29T09:06:57Z
2023-07-29T09:06:57Z
794
geekcomputers/Python
31,260
Update to pyoctoprintapi 1.7
diff --git a/homeassistant/components/octoprint/manifest.json b/homeassistant/components/octoprint/manifest.json index 3984eb86621a..e150fbe5c57e 100644 --- a/homeassistant/components/octoprint/manifest.json +++ b/homeassistant/components/octoprint/manifest.json @@ -3,7 +3,7 @@ "name": "OctoPrint", "config_flow":...
<!-- You are amazing! Thanks for contributing to our project! Please, DO NOT DELETE ANY TEXT from this template! (unless instructed). --> ## Proposed change <!-- Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug ...
https://api.github.com/repos/home-assistant/core/pulls/63254
2022-01-03T03:28:12Z
2022-01-03T11:13:33Z
2022-01-03T11:13:33Z
2022-01-04T12:02:19Z
460
home-assistant/core
39,353
cli should pull instead of delete+clone
diff --git a/libs/cli/langchain_cli/utils/git.py b/libs/cli/langchain_cli/utils/git.py index 3c90fc8f08c888..663e2773354ef3 100644 --- a/libs/cli/langchain_cli/utils/git.py +++ b/libs/cli/langchain_cli/utils/git.py @@ -147,9 +147,10 @@ def parse_dependencies( ] -def _get_repo_path(gitstring: str, repo_dir: Pat...
https://api.github.com/repos/langchain-ai/langchain/pulls/12607
2023-10-30T23:28:33Z
2023-10-30T23:44:09Z
2023-10-30T23:44:09Z
2023-10-30T23:52:39Z
484
langchain-ai/langchain
43,115
Remove unused SchedulerJob.max_threads argument
diff --git a/airflow/jobs/scheduler_job.py b/airflow/jobs/scheduler_job.py index b89cb2825b68e..429a1062631f8 100644 --- a/airflow/jobs/scheduler_job.py +++ b/airflow/jobs/scheduler_job.py @@ -1013,8 +1013,6 @@ def __init__( self.do_pickle = do_pickle super().__init__(*args, **kwargs) - self....
SchedulerJob.max_threads is not used anywhere. --- Make sure to mark the boxes below before creating PR: [x] - [x] Description above provides context of the change - [x] Unit tests coverage for changes (not needed for documentation changes) - [x] Target Github ISSUE in description if exists - [x] Commits fol...
https://api.github.com/repos/apache/airflow/pulls/8935
2020-05-20T20:48:40Z
2020-05-21T00:31:29Z
2020-05-21T00:31:29Z
2020-05-21T00:31:33Z
133
apache/airflow
14,109
use io_utils.print_msg in datset_utils
diff --git a/keras/utils/dataset_utils.py b/keras/utils/dataset_utils.py index 35d234d6255..103f849bbc7 100644 --- a/keras/utils/dataset_utils.py +++ b/keras/utils/dataset_utils.py @@ -670,11 +670,13 @@ def get_training_or_validation_split(samples, labels, validation_split, subset): num_val_samples = int(validat...
Use of io_utils.print_msg allows to send messages to python logging by setting: https://www.tensorflow.org/api_docs/python/tf/keras/utils/disable_interactive_logging instead of stdout (which remains default behavior if interactive logging is not disabled). Tested on tf 2.12.
https://api.github.com/repos/keras-team/keras/pulls/18054
2023-04-24T16:22:31Z
2023-05-31T17:20:29Z
2023-05-31T17:20:28Z
2023-05-31T17:20:29Z
237
keras-team/keras
47,352
[tagesschau] add support for more video types
diff --git a/youtube_dl/extractor/tagesschau.py b/youtube_dl/extractor/tagesschau.py index bfe07b02417..4a755c65789 100644 --- a/youtube_dl/extractor/tagesschau.py +++ b/youtube_dl/extractor/tagesschau.py @@ -4,11 +4,11 @@ import re from .common import InfoExtractor -from ..utils import parse_filesize +from ..utils...
I found that currently only tagesschau videos are played. There are some more shows hosted on tagesschau.de (see [0](http://www.tagesschau.de/multimedia/video/videoarchiv2~_date-20150714.html) for example) which are easily playable by adjusting the regex. So this patch adds support for: - tagesthemen - tagesschau vor 2...
https://api.github.com/repos/ytdl-org/youtube-dl/pulls/6282
2015-07-19T01:45:22Z
2015-07-22T18:31:11Z
2015-07-22T18:31:11Z
2015-07-22T18:31:11Z
1,226
ytdl-org/youtube-dl
50,285
Update README.md
diff --git a/Argument Injection/README.md b/Argument Injection/README.md index acaa3b79f8..d34573ddd4 100644 --- a/Argument Injection/README.md +++ b/Argument Injection/README.md @@ -30,8 +30,9 @@ We can see by printing the command that all the parameters are splited allowing ## Summary * [List of exposed command...
Adding the WGET command and fixing errors in the summary part.
https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/570
2022-10-11T15:30:12Z
2022-10-11T16:49:42Z
2022-10-11T16:49:42Z
2022-10-11T16:49:42Z
270
swisskyrepo/PayloadsAllTheThings
8,712
Fixes code highlight
diff --git a/README.md b/README.md index 0e6fd1c..d66d632 100644 --- a/README.md +++ b/README.md @@ -1845,7 +1845,7 @@ x, y = (0, 1) if True else None, None ``` **Output:** -``` +```py >>> x, y # expected (0, 1) ((0, 1), None) ```
https://api.github.com/repos/satwikkansal/wtfpython/pulls/134
2019-07-29T21:35:07Z
2019-08-04T07:26:25Z
2019-08-04T07:26:25Z
2019-08-04T07:26:43Z
106
satwikkansal/wtfpython
25,785
⬆ Bump pypa/gh-action-pypi-publish from 1.8.5 to 1.8.6
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1ad11f8d2c587..8342f4f8cc447 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -32,7 +32,7 @@ jobs: - name: Build distribution run: python -m build - name: Publish - uses: pypa/...
Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from 1.8.5 to 1.8.6. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pypa/gh-action-pypi-publish/releases">pypa/gh-action-pypi-publish's releases</a>.</em></p> <blockquote> <h2>v1.8.6</h2> <h2>...
https://api.github.com/repos/tiangolo/fastapi/pulls/9482
2023-05-03T12:01:29Z
2023-06-22T17:12:24Z
2023-06-22T17:12:24Z
2023-06-22T17:12:25Z
163
tiangolo/fastapi
22,858
Release 1.21.0
diff --git a/frontend/package.json b/frontend/package.json index 45bf6d32083d..9acf4e2e7258 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "streamlit-browser", - "version": "1.20.0", + "version": "1.21.0", "private": true, "homepage": "./", "scripts": { diff --gi...
https://api.github.com/repos/streamlit/streamlit/pulls/6444
2023-04-06T18:24:01Z
2023-04-06T22:52:58Z
2023-04-06T22:52:58Z
2023-04-06T22:52:58Z
215
streamlit/streamlit
22,019
added a model check for use_triton in deepspeed
diff --git a/deepspeed/module_inject/containers/base.py b/deepspeed/module_inject/containers/base.py index 62b78a091fd5..4498bfba8f1f 100644 --- a/deepspeed/module_inject/containers/base.py +++ b/deepspeed/module_inject/containers/base.py @@ -120,6 +120,10 @@ def create_ds_model_config(self): triton_autotu...
This PR is a follow-up to https://github.com/microsoft/DeepSpeed/issues/4231. It adds proper error messages when triton kernel is enabled for non-BERT models.
https://api.github.com/repos/microsoft/DeepSpeed/pulls/4266
2023-09-05T16:44:22Z
2023-09-11T23:15:22Z
2023-09-11T23:15:22Z
2024-02-28T18:15:04Z
204
microsoft/DeepSpeed
10,698
Fix the conversation restoration problem in version 0.2.0 New Computer
diff --git a/interpreter/terminal_interface/conversation_navigator.py b/interpreter/terminal_interface/conversation_navigator.py index e0c0b69c7..55eb43cff 100644 --- a/interpreter/terminal_interface/conversation_navigator.py +++ b/interpreter/terminal_interface/conversation_navigator.py @@ -15,9 +15,6 @@ def conv...
### Describe the changes you have made: Fix the conversation restoration function with argument `--conversations` by updating rander_past_conversation logic. ### Reference any relevant issues (e.g. "Fixes #000"): Fixes #962 ### Pre-Submission Checklist (optional but appreciated): - [x] I have included relev...
https://api.github.com/repos/OpenInterpreter/open-interpreter/pulls/977
2024-01-27T08:54:23Z
2024-01-29T23:17:29Z
2024-01-29T23:17:29Z
2024-01-29T23:17:29Z
731
OpenInterpreter/open-interpreter
40,690
fix to handle new domain of douyu.com (was douyutv.com)
diff --git a/src/you_get/common.py b/src/you_get/common.py index a417bcc713..ccfd8c27e5 100755 --- a/src/you_get/common.py +++ b/src/you_get/common.py @@ -15,7 +15,7 @@ 'dilidili' : 'dilidili', 'dongting' : 'dongting', 'douban' : 'douban', - 'douyutv' : 'douyutv', + ...
fix to handle new domain of douyu.com (was douyutv.com) <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/soimort/you-get/1011) <!-- Reviewable:end -->
https://api.github.com/repos/soimort/you-get/pulls/1011
2016-03-25T07:48:42Z
2016-04-06T18:08:10Z
2016-04-06T18:08:10Z
2016-04-06T18:08:10Z
546
soimort/you-get
21,334
[tv5mondeplus] fix extractor
diff --git a/yt_dlp/extractor/tv5mondeplus.py b/yt_dlp/extractor/tv5mondeplus.py index bd0be784d29..4da1b26d1a4 100644 --- a/yt_dlp/extractor/tv5mondeplus.py +++ b/yt_dlp/extractor/tv5mondeplus.py @@ -1,10 +1,14 @@ +import urllib.parse + from .common import InfoExtractor from ..utils import ( determine_ext, ...
### Description of your *pull request* and other information <!-- Explanation of your *pull request* in arbitrary form goes here. Please **make sure the description explains the purpose and effect** of your *pull request* and is worded well enough to be understood. Provide as much **context and examples** as poss...
https://api.github.com/repos/yt-dlp/yt-dlp/pulls/7952
2023-08-24T13:54:11Z
2023-09-16T14:24:11Z
2023-09-16T14:24:11Z
2023-09-16T20:42:27Z
1,801
yt-dlp/yt-dlp
7,447
Issue #999 c128 applied to c129
diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index c1edeb390..4882cff33 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -6789,7 +6789,7 @@ First we devise a hierarchy of interface classes: class Circle : public Shape { // pure interface public: - int radius() = 0; + ...
https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/1036
2017-09-24T10:37:07Z
2017-09-26T10:27:50Z
2017-09-26T10:27:50Z
2017-09-26T16:51:08Z
347
isocpp/CppCoreGuidelines
15,997
Show package versions
diff --git a/.github/workflows/tests-ubuntu.yml b/.github/workflows/tests-ubuntu.yml index dbf95fb4..08f718cd 100644 --- a/.github/workflows/tests-ubuntu.yml +++ b/.github/workflows/tests-ubuntu.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: install dependencies - run: pip in...
https://api.github.com/repos/chubin/cheat.sh/pulls/252
2020-11-13T10:48:58Z
2020-11-13T11:27:50Z
2020-11-13T11:27:50Z
2020-11-13T11:27:51Z
144
chubin/cheat.sh
15,102
fix: when find already_loaded model, remove loaded by array index
diff --git a/modules/sd_models.py b/modules/sd_models.py index b35aecbcaae..ba5bbea4fec 100644 --- a/modules/sd_models.py +++ b/modules/sd_models.py @@ -796,7 +796,7 @@ def reuse_model_from_already_loaded(sd_model, checkpoint_info, timer): if len(model_data.loaded_sd_models) > shared.opts.sd_checkpoints_lim...
## Description when model already loaded, the model cache need to remove is not last, so use array index instead of pop last ## Screenshots/videos: ## Checklist: - [x] I have read [contributing wiki page](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Contributing) - [x] I have performed a ...
https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/15382
2024-03-26T10:31:37Z
2024-03-30T04:36:33Z
2024-03-30T04:36:33Z
2024-03-30T04:36:33Z
170
AUTOMATIC1111/stable-diffusion-webui
40,509
Update README.md
diff --git a/README.md b/README.md index b6ed6add6..5aaae5e42 100644 --- a/README.md +++ b/README.md @@ -149,6 +149,7 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by * [IPython](https://github.com/ipython/ipython) - A rich toolkit to help you make the most out of using Python intera...
added ptpython - advanced Python REPL built on top of the prompt_toolkit library
https://api.github.com/repos/vinta/awesome-python/pulls/311
2015-03-02T13:17:19Z
2015-03-03T11:06:39Z
2015-03-03T11:06:39Z
2015-03-03T11:06:39Z
194
vinta/awesome-python
27,346
[liveleak] Adds support for thumbnails and updates tests
diff --git a/youtube_dl/extractor/liveleak.py b/youtube_dl/extractor/liveleak.py index 29fba5f30b0..ea0565ac050 100644 --- a/youtube_dl/extractor/liveleak.py +++ b/youtube_dl/extractor/liveleak.py @@ -17,7 +17,8 @@ class LiveLeakIE(InfoExtractor): 'ext': 'flv', 'description': 'extremely bad da...
Added support for fetching the video thumbnails, the only issue is concerning the third extractor test. When I run youtube-dl on that url using the --get-thumbnail flag it warns me that it is falling back to the default extractor. I'm not sure if this is an issue with the extractor or if this is expected. I didn't add ...
https://api.github.com/repos/ytdl-org/youtube-dl/pulls/9400
2016-05-05T03:16:27Z
2016-05-06T19:23:31Z
2016-05-06T19:23:31Z
2016-05-07T20:02:06Z
609
ytdl-org/youtube-dl
50,368
Add jbzd.com.pl
diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index 4de68efde..d2dda5599 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -779,6 +779,13 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "jbzd.com.pl": { + "error...
https://api.github.com/repos/sherlock-project/sherlock/pulls/812
2020-10-26T20:02:33Z
2020-11-01T16:06:00Z
2020-11-01T16:06:00Z
2020-11-01T16:06:01Z
250
sherlock-project/sherlock
36,215
📝 Micro-tweak help docs
diff --git a/docs/en/docs/help-fastapi.md b/docs/en/docs/help-fastapi.md index 767f7b43fcf72..48a88ee96cf7f 100644 --- a/docs/en/docs/help-fastapi.md +++ b/docs/en/docs/help-fastapi.md @@ -152,7 +152,7 @@ Here's what to have in mind and how to review a pull request: ### Understand the problem -* First, make sure y...
📝 Micro-tweak help docs
https://api.github.com/repos/tiangolo/fastapi/pulls/5960
2023-02-03T17:50:28Z
2023-02-03T17:54:22Z
2023-02-03T17:54:22Z
2023-02-03T17:54:24Z
203
tiangolo/fastapi
23,394
Fix markup
diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 8a79563e5..60d96abc3 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1083,7 +1083,7 @@ Obviously, we cannot catch all errors through the static type system ##### Example, bad -In the following example, it is not clear from the interfac...
Several minor issues with the markup were discovered when converting the Markdown-markup to LaTeX-markup. The commits on this branch correct the issues.
https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/333
2015-10-14T13:20:32Z
2015-10-15T08:46:21Z
2015-10-15T08:46:21Z
2015-10-15T08:46:31Z
2,762
isocpp/CppCoreGuidelines
15,279
rich handler refactor
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0416e448e..e64c64527 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added tracebacks_show_locals parameter to RichHandler - Applied dim=True to indent guide styles - Added...
Factored out method RichHandler.get_style_and_level to allow overriding in subclasses.
https://api.github.com/repos/Textualize/rich/pulls/419
2020-10-31T14:03:23Z
2020-11-07T15:36:21Z
2020-11-07T15:36:21Z
2020-11-07T15:36:37Z
1,108
Textualize/rich
48,470
Problem 16 Added
diff --git a/Project Euler/Problem 16/sol1.py b/Project Euler/Problem 16/sol1.py new file mode 100644 index 000000000000..05c7916bd10a --- /dev/null +++ b/Project Euler/Problem 16/sol1.py @@ -0,0 +1,15 @@ +power = int(input("Enter the power of 2: ")) +num = 2**power + +string_num = str(num) + +list_num = list(string_n...
Solution to the Problem 16 has been added.
https://api.github.com/repos/TheAlgorithms/Python/pulls/213
2017-11-19T20:14:38Z
2017-11-28T11:40:12Z
2017-11-28T11:40:12Z
2017-11-28T11:40:12Z
736
TheAlgorithms/Python
30,212
Prefer https over http for links in the documentation
diff --git a/README.rst b/README.rst index 915f2a118d..c7b033bec7 100644 --- a/README.rst +++ b/README.rst @@ -105,6 +105,6 @@ How to Contribute #. Write a test which shows that the bug was fixed or that the feature works as expected. #. Send a pull request and bug the maintainer until it gets merged and published. :...
- Fixed Read the Docs links - Fixed GitHub links - Fixed PyPI links
https://api.github.com/repos/psf/requests/pulls/4451
2018-01-06T19:25:15Z
2018-01-06T23:23:00Z
2018-01-06T23:23:00Z
2021-09-03T00:11:11Z
2,955
psf/requests
33,000
REGR: Fix regression RecursionError when replacing numeric scalar with None
diff --git a/doc/source/whatsnew/v1.5.2.rst b/doc/source/whatsnew/v1.5.2.rst index aaf00804262bb..4f6274b9084da 100644 --- a/doc/source/whatsnew/v1.5.2.rst +++ b/doc/source/whatsnew/v1.5.2.rst @@ -13,7 +13,7 @@ including other versions of pandas. Fixed regressions ~~~~~~~~~~~~~~~~~ -- +- Fixed regression in :meth:`...
- [x] closes #45725 (Replace xxxx with the Github issue number) - [x] [Tests added and passed](https://pandas.pydata.org/pandas-docs/dev/development/contributing_codebase.html#writing-tests) if fixing a bug or adding a new feature - [x] All [code checks passed](https://pandas.pydata.org/pandas-docs/dev/development/co...
https://api.github.com/repos/pandas-dev/pandas/pulls/48234
2022-08-24T20:04:25Z
2022-10-31T17:13:28Z
2022-10-31T17:13:28Z
2022-10-31T18:40:50Z
856
pandas-dev/pandas
45,384
launcher support for quoted user arg values
diff --git a/deepspeed/pt/deepspeed_run.py b/deepspeed/pt/deepspeed_run.py index 43b9f0e9e6e2..02a5f351cd6d 100755 --- a/deepspeed/pt/deepspeed_run.py +++ b/deepspeed/pt/deepspeed_run.py @@ -329,7 +329,10 @@ def main(args=None): "--master_addr={}".format(args.master_addr), "--master_port={}".f...
https://api.github.com/repos/microsoft/DeepSpeed/pulls/267
2020-06-17T07:17:00Z
2020-06-17T19:22:59Z
2020-06-17T19:22:59Z
2020-06-17T19:56:01Z
221
microsoft/DeepSpeed
10,374
🔨 update(theb/__init__.py): add get_response method to Completion class
diff --git a/gpt4free/theb/__init__.py b/gpt4free/theb/__init__.py index 852fe17bdc..0177194efb 100644 --- a/gpt4free/theb/__init__.py +++ b/gpt4free/theb/__init__.py @@ -46,7 +46,6 @@ def request(prompt: str, proxy: Optional[str] = None): Completion.stream_completed = True @staticmethod - def crea...
The get_response method was added to the Completion class to allow for easier retrieval of the response from the API. This method takes in a prompt and an optional proxy and returns the response as a string. The method uses the create method to generate a generator object and then iterates over it to append each messag...
https://api.github.com/repos/xtekky/gpt4free/pulls/443
2023-05-04T16:15:02Z
2023-05-04T18:14:10Z
2023-05-04T18:14:09Z
2023-05-04T18:14:10Z
260
xtekky/gpt4free
38,324