[Bug 6706] New: Am I Capable Of Finding Out Cash App Bank Name With Ease?

2022-05-17 Thread mercurial-bugs
https://bz.mercurial-scm.org/show_bug.cgi?id=6706

Bug ID: 6706
   Summary: Am I Capable Of Finding Out Cash App Bank Name With
Ease?
   Product: Mercurial
   Version: default branch
  Hardware: PC
OS: Windows
Status: UNCONFIRMED
  Severity: feature
  Priority: wish
 Component: bookmarks
  Assignee: bugzi...@mercurial-scm.org
  Reporter: drisskay8...@gmail.com
CC: mercurial-devel@mercurial-scm.org
Python Version: ---

Of course, yes. You can without a doubt capable of finding out Cash App Bank
Name without any kind of hassle and hurdle. However, it becomes very easy when
it comes to search for the correct Cash App bank name by making proper
utilization of Cash App routing number. 
https://www.contactmail-support.com/blog/cash-app-bank-name/

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel


mercurial@49183: 3 new changesets (1 on stable)

2022-05-17 Thread Mercurial Commits
3 new changesets (1 on stable) in mercurial:

https://www.mercurial-scm.org/repo/hg/rev/477b5145e1a0
changeset:   49181:477b5145e1a0
branch:  stable
parent:  49179:df68d64b0d50
user:Pierre-Yves David 
date:Tue May 17 00:09:51 2022 +0100
summary: ci: do not trigger phabricator for merge-request

https://www.mercurial-scm.org/repo/hg/rev/e3ac39edaa94
changeset:   49182:e3ac39edaa94
parent:  49180:c577d394ed6b
parent:  49181:477b5145e1a0
user:Raphaël Gomès 
date:Tue May 17 12:05:09 2022 +0100
summary: branching: merge stable into default

https://www.mercurial-scm.org/repo/hg/rev/22279b604a88
changeset:   49183:22279b604a88
bookmark:@
tag: tip
user:Pierre-Yves David 
date:Mon May 16 23:12:49 2022 +0100
summary: fix-ci: backed out changeset 308e45f7b455

-- 
Repository URL: https://www.mercurial-scm.org/repo/hg
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel


Call for papers for the Mercurial Paris 2022 edition are open! (Deadline June 10th, 2022)

2022-05-17 Thread Franck Bret
Three years after its first edition, we are happy to finally 
announce*Mercurial Paris Conference 2022*.


The 2022 edition will be a three days event that take place *from 
Wednesday 21 of September 9:00 am to Friday 23 of September 5:00 pm in 
Paris, Sorbonne University, France.*


The first day, will be dedicated to workshops, the second to talks and 
the third to sprint and hack around Mercurial.


If you're involved in anything related to Mercurial development or if 
you use Mercurial in your company, it's time to solicit you as a speaker!


*Topics of Interest**
***
    Workflow,
    Hosting,
    Tooling,
    Scaling and Performance,
    Others.

*Submission guidelines*

Send an email to the organization committee ( contact@mercurial.paris ) 
with the following, *before the 10th of June, 2022.**

***
*For Talk (in english)*

Talks are short presentation around Mercurial usage, feedback, technical 
features, related tools, community, etc...


    Conference name with a short summary
    Speaker name, company, contact
    Duration (10/20 min)

*For Workshop*

2h presentation of a specifig topic with active participation of 
attendee on their laptop


    Workshop name with a short summary
    Speaker name, company, contact

*Call for papers important date*

    Abstract submission deadline : June 10th, 2022
    Paper submission deadline : June 10th, 2022
    Author notification and program announcement : June 17th, 2022
    Final presentation due : September 1st, 2022

More info : 
https://mercurial.paris/posts/2022/04/21/mercurial-paris-2022-call-for-papers/


You can also follow us and help to spread the event on twitter ( 
https://twitter.com/mercurial_paris ) and mastodon ( 
https://fosstodon.org/@mercurial_paris_conference )


Regards,
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel


D12626: revlog: use %d to format int instead of %lu (issue6565)

2022-05-17 Thread av6 (Anton Shestakov)
av6 created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.

REVISION SUMMARY
  The issue says gcc warns that the data types don't match. I couldn't reproduce
  the warning locally for some reason, but this patch shouldn't break things.
  Maybe %lu was simply a copy-paste error from 6b1eae313b2f 

  (https://phab.mercurial-scm.org/D10625).

REPOSITORY
  rHG Mercurial

BRANCH
  default

REVISION DETAIL
  https://phab.mercurial-scm.org/D12626

AFFECTED FILES
  mercurial/cext/revlog.c

CHANGE DETAILS

diff --git a/mercurial/cext/revlog.c b/mercurial/cext/revlog.c
--- a/mercurial/cext/revlog.c
+++ b/mercurial/cext/revlog.c
@@ -497,7 +497,7 @@
if (self->format_version != format_v1) {
PyErr_Format(PyExc_RuntimeError,
 "version header should go in the docket, not the "
-"index: %lu",
+"index: %d",
 header);
return NULL;
}



To: av6, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel


D12627: worker: adapt _blockingreader to work around a python3.8.[0-1] bug (issue6444)

2022-05-17 Thread mharbison72 (Matt Harbison)
mharbison72 created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.

REVISION SUMMARY
  Python 3.8.0 is the latest I can load on Ubuntu 18.04, and I regularly hit the
  TypeError because this function is missing.  While it can be avoided by
  disabling worker usage via config option, that's a bit obscure.
  
  I'm limiting the function definition to the narrow range of affected pythons
  because there were other bugs in this area that were worked around, that I 
don't
  fully understand.  See the bug report for discussions on why the narrow range,
  and related commits working around other bugs.

REPOSITORY
  rHG Mercurial

BRANCH
  stable

REVISION DETAIL
  https://phab.mercurial-scm.org/D12627

AFFECTED FILES
  mercurial/worker.py

CHANGE DETAILS

diff --git a/mercurial/worker.py b/mercurial/worker.py
--- a/mercurial/worker.py
+++ b/mercurial/worker.py
@@ -78,6 +78,14 @@
 # _wrapped.readinto(), since that is unbuffered. The unpickler is fine
 # with just read() and readline(), so we don't need to implement it.
 
+if (3, 8, 0) <= sys.version_info[:3] < (3, 8, 2):
+
+# This is required for python 3.8, prior to 3.8.2.  See issue6444.
+def readinto(self, b):
+data = self._wrapped.readall()
+b[:] = data
+return len(data)
+
 def readline(self):
 return self._wrapped.readline()
 



To: mharbison72, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel